File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM rust:1.88 -slim AS builder
1+ FROM rust:1.92.0 -slim-trixie AS builder
22
33RUN apt-get update && apt-get install -y \
44 pkg-config \
@@ -16,11 +16,11 @@ WORKDIR /usr/src/zerofs
1616
1717RUN cargo build --release
1818
19- FROM debian:bookworm -slim
19+ FROM debian:trixie -slim
2020
2121RUN apt-get update && apt-get install -y \
2222 ca-certificates \
23- libssl3 \
23+ libssl3t64 \
2424 && rm -rf /var/lib/apt/lists/*
2525
2626COPY --from=builder /usr/src/zerofs/target/release/zerofs /usr/local/bin/zerofs
@@ -31,4 +31,4 @@ USER zerofs
3131# Default ports that might be used - actual configuration comes from TOML file
3232EXPOSE 2049 5564 10809
3333
34- ENTRYPOINT ["zerofs" ]
34+ ENTRYPOINT ["zerofs" ]
Original file line number Diff line number Diff line change 1- FROM debian:bookworm -slim
1+ FROM debian:trixie -slim
22
33ARG TARGETPLATFORM
44ARG TARGETARCH
55ARG TARGETVARIANT
66
77RUN apt-get update && apt-get install -y \
88 ca-certificates \
9- libssl3 \
9+ libssl3t64 \
1010 && rm -rf /var/lib/apt/lists/*
1111
1212# Copy the appropriate binary based on the target platform
@@ -49,4 +49,4 @@ USER zerofs
4949# Default ports that might be used - actual configuration comes from TOML file
5050EXPOSE 2049 5564 10809
5151
52- ENTRYPOINT ["zerofs"]
52+ ENTRYPOINT ["zerofs"]
You can’t perform that action at this time.
0 commit comments