11 lines
182 B
Docker
11 lines
182 B
Docker
FROM rust:1.81 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"]
|