Skip to content

Commit aa176a6

Browse files
authored
use debian bookworm in dockerfile for newer libssl
1 parent 9f6a240 commit aa176a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WORKDIR /usr/src/id6
33
COPY . .
44
RUN cargo install --path .
55

6-
FROM debian:buster-slim
7-
RUN apt-get update && apt-get install -y libssl1.1 && rm -rf /var/lib/apt/lists/*
6+
FROM debian:bookworm-slim
7+
RUN apt-get update && apt-get install -y libssl3 && rm -rf /var/lib/apt/lists/*
88
COPY --from=builder /usr/local/cargo/bin/id6 /usr/local/bin/id6
99
CMD ["id6"]

0 commit comments

Comments
 (0)