We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 056bb80 commit 93d3367Copy full SHA for 93d3367
1 file changed
Dockerfile
@@ -39,11 +39,8 @@ RUN cargo install --locked --path . --root /build
39
40
# run
41
FROM debian:13-slim AS runtime
42
-RUN apt-get update -y && \
43
- apt-get install --no-install-recommends -y ca-certificates && \
44
- rm -rf /var/lib/apt/lists/*
45
-# make sure we run latest patch for openssl and ssl lib
46
-RUN apt-get install -y --only-upgrade libssl3t64 openssl && \
+RUN apt-get update -y && apt upgrade -y && \
+ apt-get install --no-install-recommends -y ca-certificates libssl-dev && \
47
rm -rf /var/lib/apt/lists/*
48
WORKDIR /app
49
COPY --from=builder /build/bin/defguard-proxy .
0 commit comments