diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38aca5d2f..8127b142f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,7 +101,7 @@ review_docs: changelog_snippet: interruptible: true - image: alpine:3.15 + image: alpine:3.16 stage: lint before_script: - apk add git diff --git a/api/Dockerfile b/api/Dockerfile index 2b1e831a2..66594b962 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.14 as pre-build +FROM alpine:3.16 as pre-build # We need this additional step to avoid having poetrys deps interacting with our # dependencies. This is only required until alpine 3.16 is released, since this @@ -10,7 +10,7 @@ COPY pyproject.toml poetry.lock / RUN poetry export --without-hashes > requirements.txt RUN poetry export --dev --without-hashes > dev-requirements.txt -FROM alpine:3.14 as builder +FROM alpine:3.16 as builder RUN \ echo 'installing dependencies' && \ @@ -66,7 +66,7 @@ RUN \ ; fi -FROM alpine:3.14 as build-image +FROM alpine:3.16 as build-image COPY --from=builder /venv /venv # emulate activation by prefixing PATH