2024-10-21 17:36:18 +11:00
|
|
|
FROM scratch AS base
|
2024-08-09 18:19:59 -04:00
|
|
|
WORKDIR /builder
|
2023-12-08 21:19:17 +11:00
|
|
|
COPY . .
|
|
|
|
|
2024-12-05 22:36:46 +00:00
|
|
|
FROM alpine:3.21@sha256:eb37f58646a901dc7727cf448cae36daaefaba79de33b5058dab79aa4c04aefb
|
2024-08-09 18:19:59 -04:00
|
|
|
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
|
2024-10-21 17:36:18 +11:00
|
|
|
COPY --from=base /builder/target/x86_64-unknown-linux-musl/release/rustbot .
|
|
|
|
CMD [ "./rustbot" ]
|