ue/github/rust-bbs/Dockerfile
2024-11-14 12:06:40 +09:00

9 lines
169 B
Docker

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"]