From 1f9f109bd6dfb6c142194c88bc23542ed146b709 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Thu, 27 Jan 2022 16:27:16 +0000 Subject: [PATCH] Alpine 3.11 is no longer around. Change docker base to alpine latest --- docker/Dockerfile | 4 ++-- docker/Dockerfile.dev | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4a111f5..79803c0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,7 +23,7 @@ # then transfer those dependencies to the container we're going to ship, # before throwing this one away ARG PYTHON_VERSION=3.8 -FROM docker.io/python:${PYTHON_VERSION}-alpine3.11 as builder +FROM docker.io/python:${PYTHON_VERSION}-alpine as builder ## ## Build libolm for matrix-nio e2e support @@ -79,7 +79,7 @@ RUN pip install --prefix="/python-libs" --no-warn-script-location "/src/.[postgr # Create the container we'll actually ship. We need to copy libolm and any # python dependencies that we built above to this container -FROM docker.io/python:${PYTHON_VERSION}-alpine3.11 +FROM docker.io/python:${PYTHON_VERSION}-alpine # Copy python dependencies from the "builder" container COPY --from=builder /python-libs /usr/local diff --git a/docker/Dockerfile.dev b/docker/Dockerfile.dev index 9c77e45..dce0471 100644 --- a/docker/Dockerfile.dev +++ b/docker/Dockerfile.dev @@ -22,7 +22,7 @@ # ARG PYTHON_VERSION=3.8 -FROM docker.io/python:${PYTHON_VERSION}-alpine3.11 +FROM docker.io/python:${PYTHON_VERSION}-alpine ## ## Build libolm for matrix-nio e2e support