Files
bigbirb/Dockerfile

11 lines
192 B
Docker

FROM rustlang/rust:nightly AS builder
WORKDIR /usr/src/bot
COPY . .
RUN cargo install --path .
FROM ubuntu:24.10
COPY --from=builder /usr/local/cargo/bin/bot /usr/local/bin/bot
CMD ["bot"]