diff --git a/packages/bot/Dockerfile b/packages/bot/Dockerfile index 3e94476..bd2f0b1 100644 --- a/packages/bot/Dockerfile +++ b/packages/bot/Dockerfile @@ -16,7 +16,7 @@ COPY . . RUN cargo build --release --bin bot # We do not need the Rust toolchain to run the binary! -FROM gcr.io/distroless/base AS runtime +FROM debian:slim AS runtime WORKDIR /app -COPY --from=builder /app/target/release/bot /usr/local/bin +COPY --from=builder /app/target/release/bot /usr/local/bin/bot ENTRYPOINT ["/usr/local/bin/bot"] \ No newline at end of file