Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM docker.io/rust:buster as builder
FROM docker.io/rust:bookworm as builder
WORKDIR app

COPY . .
RUN cargo build --release --bin mollysocket


FROM docker.io/debian:buster as runtime
FROM docker.io/debian:bookworm as runtime
WORKDIR app

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


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