huaxu-bot/Dockerfile
2024-08-22 19:51:14 +02:00

8 lines
No EOL
188 B
Docker

FROM rust:1.79 AS build-env
WORKDIR /app
COPY . /app
RUN cargo build --release
FROM gcr.io/distroless/cc-debian12
COPY --from=build-env /app/target/release/huaxu-bot /
CMD ["./huaxu-bot"]