Skip to content

Commit cc067aa

Browse files
authored
Merge pull request #391 from neo4j/fix/security-updates
Bump base image versions
2 parents 310dfbe + cfcd2ae commit cc067aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neo4j-admin/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG IMAGE
22
FROM golang:1.22-bullseye as build
3-
RUN apt-get install -y curl
3+
RUN apt-get update && apt-get install -y curl && apt-get remove -y python* && apt-get autoremove -y
44
WORKDIR backup
55
COPY backup/aws aws/
66
COPY backup/azure azure/

neo4j-reverse-proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.2 AS run
10+
FROM alpine:3.21.3 AS run
1111
RUN addgroup --gid 7474 --system neo4j \
1212
&& adduser --uid 7474 --system --no-create-home neo4j
1313
WORKDIR /reverse-proxy

0 commit comments

Comments
 (0)