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.
1 parent aec5db9 commit e78572fCopy full SHA for e78572f
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM rust:1.77-bullseye as build
+FROM rust:1.90-bookworm as build
2
3
WORKDIR /agent
4
ARG CARGO_FLAGS="--release"
@@ -11,7 +11,13 @@ COPY Cargo.lock Cargo.lock
11
# see https://blog.rust-lang.org/inside-rust/2023/01/30/cargo-sparse-protocol.html
12
RUN CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse cargo build ${CARGO_FLAGS}
13
14
-FROM debian:bullseye-slim as agent
+FROM debian:bookworm-slim as agent
15
+
16
+# Update package lists and install security updates
17
+RUN apt-get update && \
18
+ apt-get upgrade -y && \
19
+ apt-get clean && \
20
+ rm -rf /var/lib/apt/lists/*
21
22
23
0 commit comments