hardfight/Dockerfile
2023-10-04 12:15:57 +00:00

7 lines
162 B
Docker

FROM rust:bookworm
WORKDIR /app
RUN mkdir save
RUN git clone https://github.com/ayywrk/ircie
COPY . .
RUN cargo build --release
CMD ["./target/release/hardfight"]