Skip to content

Commit afe5392

Browse files
authored
Merge pull request #523 from neo4j/fix/update-alpine-base-img
Update alpine base image for reverse-proxy
2 parents 6f28c36 + ec4781d commit afe5392

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

neo4j-reverse-proxy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.8-alpine AS build
1+
FROM golang:1.24.13-alpine AS build
22
WORKDIR /go/reverse-proxy
33
COPY reverse-proxy/operations operations/
44
COPY reverse-proxy/proxy proxy/
@@ -7,7 +7,7 @@ COPY reverse-proxy/main.go main.go
77
RUN go mod download && go mod verify \
88
&& go build -v -o reverseproxy_linux main.go
99

10-
FROM alpine:3.21.3 AS run
10+
FROM alpine:3.21.6 AS run
1111
RUN addgroup --gid 7474 --system neo4j \
1212
&& adduser --uid 7474 --system --no-create-home neo4j
1313
WORKDIR /reverse-proxy
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module reverse-proxy
22

3-
go 1.23.8
3+
go 1.24

0 commit comments

Comments
 (0)