Skip to content

Commit 724e180

Browse files
Update alpine Docker tag to v3.20
1 parent 75f82ce commit 724e180

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packaging/docker/x86-alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# use multi stage dockerfile to first create a virtualenv,
22
# then copy the virtualenv (without all build deps) into target image
33

4-
FROM alpine:3.19 as build
4+
FROM alpine:3.20 as build
55
RUN apk -U update && apk -U upgrade
66
RUN apk -U add python3 py3-virtualenv python3-dev gcc musl-dev linux-headers
77
ADD src /src
88
RUN virtualenv /usr/local/dyndnsc && \
99
/usr/local/dyndnsc/bin/pip install /src
1010

11-
FROM alpine:3.19
11+
FROM alpine:3.20
1212
RUN apk -U update && \
1313
apk -U upgrade && \
1414
apk -U add --no-cache python3 && \

0 commit comments

Comments
 (0)