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 865c4b9 commit 8228c19Copy full SHA for 8228c19
Dockerfile
@@ -11,13 +11,13 @@
11
# # CMD ["newdoc"]
12
# ENTRYPOINT ["newdoc"]
13
14
-## This configuration results in a small image based on Debian Buster without Rust tooling
15
-FROM rust:1.47 as builder
+## This configuration results in a small image based on Debian Bullseye without Rust tooling
+FROM rust:1.50 as builder
16
WORKDIR /usr/src/newdoc
17
COPY . .
18
RUN cargo install --path .
19
20
-FROM debian:buster-slim
+FROM debian:bullseye-slim
21
# RUN apt-get update && apt-get install -y extra-runtime-dependencies
22
COPY --from=builder /usr/local/cargo/bin/newdoc /usr/local/bin/newdoc
23
ENTRYPOINT ["newdoc"]
0 commit comments