File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- FROM alpine:3.16 as builder
1+ FROM alpine:3.18 as builder
22
33RUN set -eux \
44 && apk add --no-cache \
@@ -30,7 +30,7 @@ RUN set -eux \
3030 && find /usr/lib/ -name '*.pyc' -print0 | xargs -0 -n1 rm -rf
3131
3232
33- FROM alpine:3.16 as production
33+ FROM alpine:3.18 as production
3434ARG VERSION
3535# https://github.com/opencontainers/image-spec/blob/master/annotations.md
3636#LABEL "org.opencontainers.image.created"=""
@@ -55,7 +55,7 @@ RUN set -eux \
5555 && find /usr/lib/ -name '__pycache__' -print0 | xargs -0 -n1 rm -rf \
5656 && find /usr/lib/ -name '*.pyc' -print0 | xargs -0 -n1 rm -rf
5757
58- COPY --from=builder /usr/lib/python3.10 /site-packages/ /usr/lib/python3.10 /site-packages/
58+ COPY --from=builder /usr/lib/python3.11 /site-packages/ /usr/lib/python3.11 /site-packages/
5959COPY --from=builder /usr/bin/ansible-lint /usr/bin/ansible-lint
6060COPY --from=builder /usr/bin/ansible /usr/bin/ansible
6161COPY --from=builder /usr/bin/ansible-config /usr/bin/ansible-config
You can’t perform that action at this time.
0 commit comments