Skip to content
Snippets Groups Projects
Commit f3691647 authored by Slavi Pantaleev's avatar Slavi Pantaleev Committed by Richard van der Hoff
Browse files

Upgrade Alpine Linux used in the Docker image (3.8 -> 3.10) (#5619)


Alpine Linux 3.8 is still supported, but it seems like
it's quite outdated now.

While Python should be the same on both, all other libraries, etc.,
are much newer in Alpine 3.9 and 3.10.

Signed-off-by: default avatarSlavi Pantaleev <slavi@devture.com>
parent 6bb0357c
No related branches found
No related tags found
No related merge requests found
Base Docker image on a newer Alpine Linux version (3.8 -> 3.10)
......@@ -16,7 +16,7 @@ ARG PYTHON_VERSION=3.7
###
### Stage 0: builder
###
FROM docker.io/python:${PYTHON_VERSION}-alpine3.8 as builder
FROM docker.io/python:${PYTHON_VERSION}-alpine3.10 as builder
# install the OS build deps
......@@ -55,7 +55,7 @@ RUN pip install --prefix="/install" --no-warn-script-location \
### Stage 1: runtime
###
FROM docker.io/python:${PYTHON_VERSION}-alpine3.8
FROM docker.io/python:${PYTHON_VERSION}-alpine3.10
# xmlsec is required for saml support
RUN apk add --no-cache --virtual .runtime_deps \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment