We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 056bb80 commit 80a5973Copy full SHA for 80a5973
Dockerfile
@@ -39,8 +39,11 @@ RUN cargo install --locked --path . --root /build
39
40
# run
41
FROM debian:13-slim AS runtime
42
+RUN echo "deb http://security.debian.org/ trixie-security main" \
43
+ >> /etc/apt/sources.list
44
RUN apt-get update -y && \
- apt-get install --no-install-recommends -y ca-certificates && \
45
+ apt-get upgrade -y
46
+RUN apt-get install --no-install-recommends -y ca-certificates && \
47
rm -rf /var/lib/apt/lists/*
48
# make sure we run latest patch for openssl and ssl lib
49
RUN apt-get install -y --only-upgrade libssl3t64 openssl && \
0 commit comments