Rustbot/Dockerfile

11 lines
364 B
Docker
Raw Permalink Normal View History

FROM scratch AS base
WORKDIR /builder
2023-12-08 21:19:17 +11:00
COPY . .
FROM alpine:3.21@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
LABEL org.opencontainers.image.source="https://git.toast-server.net/toast/Rustbot"
2024-05-02 19:25:29 -04:00
RUN apk add --no-cache libgcc
2023-12-08 21:19:17 +11:00
WORKDIR /rustbot
COPY --from=base /builder/target/x86_64-unknown-linux-musl/release/rustbot .
CMD [ "./rustbot" ]