Alpine 3.11 is no longer around. Change docker base to alpine latest
This commit is contained in:
parent
71d520239c
commit
1f9f109bd6
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@
|
||||||
# then transfer those dependencies to the container we're going to ship,
|
# then transfer those dependencies to the container we're going to ship,
|
||||||
# before throwing this one away
|
# before throwing this one away
|
||||||
ARG PYTHON_VERSION=3.8
|
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
|
## 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
|
# Create the container we'll actually ship. We need to copy libolm and any
|
||||||
# python dependencies that we built above to this container
|
# 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 python dependencies from the "builder" container
|
||||||
COPY --from=builder /python-libs /usr/local
|
COPY --from=builder /python-libs /usr/local
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
ARG PYTHON_VERSION=3.8
|
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
|
## Build libolm for matrix-nio e2e support
|
||||||
|
|
Loading…
Reference in a new issue