hotbot/Dockerfile

24 lines
330 B
Docker
Raw Permalink Normal View History

2024-06-11 18:43:30 +00:00
FROM rust:1-slim AS build
WORKDIR /app
COPY Cargo.toml .
COPY Cargo.lock .
COPY rust-toolchain .
COPY src/ src/
RUN apt-get update
RUN apt-get install -y git
RUN cargo build --release
FROM fedora:40
WORKDIR /app
COPY --from=build /app/target/release/hotbot hotbot
COPY assets/ assets/
RUN chmod +x hotbot
CMD ["./hotbot"]