Skip to content

Commit 4ecaad7

Browse files
committed
Use Debian Trixie in Docker images
1 parent 5e9894e commit 4ecaad7

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.88-slim AS builder
1+
FROM rust:1.92.0-slim-trixie AS builder
22

33
RUN apt-get update && apt-get install -y \
44
pkg-config \
@@ -16,11 +16,11 @@ WORKDIR /usr/src/zerofs
1616

1717
RUN cargo build --release
1818

19-
FROM debian:bookworm-slim
19+
FROM debian:trixie-slim
2020

2121
RUN apt-get update && apt-get install -y \
2222
ca-certificates \
23-
libssl3 \
23+
libssl3t64 \
2424
&& rm -rf /var/lib/apt/lists/*
2525

2626
COPY --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
3232
EXPOSE 2049 5564 10809
3333

34-
ENTRYPOINT ["zerofs"]
34+
ENTRYPOINT ["zerofs"]

Dockerfile.multiarch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM debian:bookworm-slim
1+
FROM debian:trixie-slim
22

33
ARG TARGETPLATFORM
44
ARG TARGETARCH
55
ARG TARGETVARIANT
66

77
RUN 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
5050
EXPOSE 2049 5564 10809
5151

52-
ENTRYPOINT ["zerofs"]
52+
ENTRYPOINT ["zerofs"]

0 commit comments

Comments
 (0)