hardfight/Dockerfile

7 lines
162 B
Docker
Raw Normal View History

2023-10-04 12:15:57 +00:00
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"]