We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f17db3 commit b1e093bCopy full SHA for b1e093b
Dockerfile
@@ -16,6 +16,9 @@ RUN cargo build --release --bin tricked-bot
16
# We do not need the Rust toolchain to run the binary!
17
FROM debian:bookworm-slim AS runtime
18
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/*
22
COPY --from=chef /etc/ssl/certs /etc/ssl/certs
23
COPY --from=builder /tricked-bot/target/release/tricked-bot /usr/local/bin
24
ENTRYPOINT ["/usr/local/bin/tricked-bot"]
0 commit comments