We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 310dfbe + cfcd2ae commit cc067aaCopy full SHA for cc067aa
neo4j-admin/Dockerfile
@@ -1,6 +1,6 @@
1
ARG IMAGE
2
FROM golang:1.22-bullseye as build
3
-RUN apt-get install -y curl
+RUN apt-get update && apt-get install -y curl && apt-get remove -y python* && apt-get autoremove -y
4
WORKDIR backup
5
COPY backup/aws aws/
6
COPY backup/azure azure/
neo4j-reverse-proxy/Dockerfile
@@ -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.2 AS run
+FROM alpine:3.21.3 AS run
11
RUN addgroup --gid 7474 --system neo4j \
12
&& adduser --uid 7474 --system --no-create-home neo4j
13
WORKDIR /reverse-proxy
0 commit comments