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