Skip to content

Commit b865f79

Browse files
TheAssassinvoidanix
authored andcommitted
Update Dockerfile
1 parent 53072ec commit b865f79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# first, let's build the software
22
# this is going to take the most time
3-
FROM alpine:3.17 AS builder
3+
FROM alpine:3.22 AS builder
44

55
LABEL org.opencontainers.image.source = "https://github.com/blue-nebula/base"
66

@@ -28,15 +28,15 @@ RUN mkdir build && \
2828

2929
# next, we convert the example server config to a template
3030
# this is done in no time, so we do not have to benefit from Docker's caching a lot there
31-
FROM python:3.10-alpine AS template
31+
FROM python:3.13-alpine AS template
3232

3333
COPY docker/generate-servinit-template.py doc/examples/servinit.cfg /
3434

3535
RUN python3 /generate-servinit-template.py /servinit.cfg > /servinit.tmpl
3636

3737

3838
# finally, let's build the final runtime image (doesn't need all of the build dependencies)
39-
FROM alpine:3.17
39+
FROM alpine:3.22
4040

4141
LABEL maintainer="https://blue-nebula.org"
4242

0 commit comments

Comments
 (0)