Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit 2d4ff22

Browse files
committed
fix: update base-contaienr from buster to bookworm
1 parent 843eec9 commit 2d4ff22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM docker.io/rust:buster as builder
1+
FROM docker.io/rust:bookworm as builder
22
WORKDIR app
33

44
COPY . .
55
RUN cargo build --release --bin mollysocket
66

77

8-
FROM docker.io/debian:buster as runtime
8+
FROM docker.io/debian:bookworm as runtime
99
WORKDIR app
1010

1111
RUN apt update && \
12-
apt install -y openssl libssl-dev ca-certificates libssl1.1 libsqlite3-0
12+
apt install -y libssl3 libsqlite3-0
1313

1414

1515
COPY --from=builder /app/target/release/mollysocket /usr/local/bin/

0 commit comments

Comments
 (0)