diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-02-12 12:02:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 12:02:53 +0000 |
commit | 3dd2b5f5e313c0350a1a64f1d5e40c8bdc46029c (patch) | |
tree | 8bb9be1812eee03cc7454890c01c11fb35f38927 | |
parent | 1.10.0rc5 (diff) | |
download | synapse-3dd2b5f5e313c0350a1a64f1d5e40c8bdc46029c.tar.xz |
bump the version of Alpine Linux used in the docker images (#6897)
-rw-r--r-- | changelog.d/6897.docker | 1 | ||||
-rw-r--r-- | docker/Dockerfile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/6897.docker b/changelog.d/6897.docker new file mode 100644 index 0000000000..8e7bcd719a --- /dev/null +++ b/changelog.d/6897.docker @@ -0,0 +1 @@ +Update the docker images to Alpine Linux 3.11. diff --git a/docker/Dockerfile b/docker/Dockerfile index e5a0d6d5f6..93d61739ae 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,7 +16,7 @@ ARG PYTHON_VERSION=3.7 ### ### Stage 0: builder ### -FROM docker.io/python:${PYTHON_VERSION}-alpine3.10 as builder +FROM docker.io/python:${PYTHON_VERSION}-alpine3.11 as builder # install the OS build deps |