Skip to content

Commit b1e093b

Browse files
committed
fix
1 parent 6f17db3 commit b1e093b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ RUN cargo build --release --bin tricked-bot
1616
# We do not need the Rust toolchain to run the binary!
1717
FROM debian:bookworm-slim AS runtime
1818
WORKDIR /tricked-bot
19+
RUN apt-get update && \
20+
apt-get install -y --no-install-recommends libssl3 ca-certificates && \
21+
rm -rf /var/lib/apt/lists/*
1922
COPY --from=chef /etc/ssl/certs /etc/ssl/certs
2023
COPY --from=builder /tricked-bot/target/release/tricked-bot /usr/local/bin
2124
ENTRYPOINT ["/usr/local/bin/tricked-bot"]

0 commit comments

Comments
 (0)