9 lines
169 B
Docker
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"]
|