Skip to content

Commit 7f84fe0

Browse files
authored
Bump server image and dockerize versions (#3192)
* bump go and base image for server * bump dockerize version to fix vulnerable dependency
1 parent b62ebe7 commit 7f84fe0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.11-alpine3.22 AS server-builder
1+
FROM golang:1.25.7-alpine3.23 AS server-builder
22

33
RUN apk upgrade --no-cache && \
44
apk add --no-cache \
@@ -15,13 +15,13 @@ COPY . ./
1515

1616
RUN make build-server
1717

18-
FROM golang:1.24.11-alpine3.22 AS dockerize-builder
18+
FROM golang:1.25.7-alpine3.23 AS dockerize-builder
1919

20-
ARG DOCKERIZE_VERSION=v0.9.2
20+
ARG DOCKERIZE_VERSION=v0.10.1
2121
RUN go install github.com/jwilder/dockerize@${DOCKERIZE_VERSION} && \
2222
cp $(which dockerize) /usr/local/bin/dockerize
2323

24-
FROM alpine:3.22 AS ui-server
24+
FROM alpine:3.23.3 AS ui-server
2525

2626
RUN apk upgrade --no-cache && \
2727
apk add --no-cache \

0 commit comments

Comments
 (0)