Alpine 3.11 is no longer around. Change docker base to alpine latest

This commit is contained in:
Andrew Morgan 2022-01-27 16:27:16 +00:00
parent 71d520239c
commit 1f9f109bd6
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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