We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fc4b5d commit d3b2eb1Copy full SHA for d3b2eb1
packaging/docker/x86-alpine/Dockerfile
@@ -1,14 +1,14 @@
1
# use multi stage dockerfile to first create a virtualenv,
2
# then copy the virtualenv (without all build deps) into target image
3
4
-FROM alpine:3.17 as build
+FROM alpine:3.19 as build
5
RUN apk -U update && apk -U upgrade
6
RUN apk -U add python3 py3-virtualenv python3-dev gcc musl-dev linux-headers
7
ADD src /src
8
RUN virtualenv /usr/local/dyndnsc && \
9
/usr/local/dyndnsc/bin/pip install /src
10
11
-FROM alpine:3.17
+FROM alpine:3.19
12
RUN apk -U update && \
13
apk -U upgrade && \
14
apk -U add --no-cache python3 && \
0 commit comments