Update dependency alpine to v3.16 (develop)
This commit is contained in:
parent
365111a770
commit
e8b41fd06f
|
@ -101,7 +101,7 @@ review_docs:
|
||||||
|
|
||||||
changelog_snippet:
|
changelog_snippet:
|
||||||
interruptible: true
|
interruptible: true
|
||||||
image: alpine:3.15
|
image: alpine:3.16
|
||||||
stage: lint
|
stage: lint
|
||||||
before_script:
|
before_script:
|
||||||
- apk add git
|
- apk add git
|
||||||
|
|
|
@ -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
|
# 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
|
# 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 --without-hashes > requirements.txt
|
||||||
RUN poetry export --dev --without-hashes > dev-requirements.txt
|
RUN poetry export --dev --without-hashes > dev-requirements.txt
|
||||||
|
|
||||||
FROM alpine:3.14 as builder
|
FROM alpine:3.16 as builder
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
echo 'installing dependencies' && \
|
echo 'installing dependencies' && \
|
||||||
|
@ -66,7 +66,7 @@ RUN \
|
||||||
; fi
|
; fi
|
||||||
|
|
||||||
|
|
||||||
FROM alpine:3.14 as build-image
|
FROM alpine:3.16 as build-image
|
||||||
|
|
||||||
COPY --from=builder /venv /venv
|
COPY --from=builder /venv /venv
|
||||||
# emulate activation by prefixing PATH
|
# emulate activation by prefixing PATH
|
||||||
|
|
Loading…
Reference in New Issue