We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c032f8 commit 7918da0Copy full SHA for 7918da0
Dockerfile
@@ -1,5 +1,5 @@
1
# Start with a rust alpine image
2
-FROM rust:1-alpine3.17
+FROM rust:1-alpine3.18
3
# This is important, see https://github.com/rust-lang/docker-rust/issues/85
4
ENV RUSTFLAGS="-C target-feature=-crt-static"
5
# if needed, add additional dependencies here
@@ -12,7 +12,7 @@ RUN cargo build --release
12
RUN strip target/release/mini-docker-rust
13
14
# use a plain alpine image, the alpine version needs to match the builder
15
-FROM alpine:3.17
+FROM alpine:3.18
16
# if needed, install additional dependencies here
17
RUN apk add --no-cache libgcc
18
# copy the binary into the final image
0 commit comments