We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f28c36 + ec4781d commit afe5392Copy full SHA for afe5392
neo4j-reverse-proxy/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.23.8-alpine AS build
+FROM golang:1.24.13-alpine AS build
2
WORKDIR /go/reverse-proxy
3
COPY reverse-proxy/operations operations/
4
COPY reverse-proxy/proxy proxy/
@@ -7,7 +7,7 @@ COPY reverse-proxy/main.go main.go
7
RUN go mod download && go mod verify \
8
&& go build -v -o reverseproxy_linux main.go
9
10
-FROM alpine:3.21.3 AS run
+FROM alpine:3.21.6 AS run
11
RUN addgroup --gid 7474 --system neo4j \
12
&& adduser --uid 7474 --system --no-create-home neo4j
13
WORKDIR /reverse-proxy
neo4j-reverse-proxy/reverse-proxy/go.mod
@@ -1,3 +1,3 @@
module reverse-proxy
-go 1.23.8
+go 1.24
0 commit comments