mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
datasette publish uses python:3.8 base Docker image, closes #629
This commit is contained in:
parent
f554be39fc
commit
d977fbadf7
3 changed files with 3 additions and 3 deletions
|
|
@ -306,7 +306,7 @@ def make_dockerfile(
|
|||
install = ["datasette"] + list(install)
|
||||
|
||||
return """
|
||||
FROM python:3.6
|
||||
FROM python:3.8
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
{spatialite_extras}
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ def test_publish_cloudrun_plugin_secrets(mock_call, mock_output, mock_which):
|
|||
.split("\n====================\n")[0]
|
||||
.strip()
|
||||
)
|
||||
expected = """FROM python:3.6
|
||||
expected = """FROM python:3.8
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
|
|
@ -138,7 +138,7 @@ def test_publish_now_plugin_secrets(mock_run, mock_which):
|
|||
.split("\n====================\n")[0]
|
||||
.strip()
|
||||
)
|
||||
expected = """FROM python:3.6
|
||||
expected = """FROM python:3.8
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue