ue/github/rust-bbs/Dockerfile

9 lines
169 B
Docker
Raw Normal View History

2024-06-03 14:47:02 +00:00
FROM syui/aios
WORKDIR /app
COPY ./src ./src
COPY ./templates ./templates
COPY ./Cargo.toml ./Cargo.toml
RUN cargo build --release
CMD ["/app/target/release/rust-bbs"]