fastcloud/Dockerfile

10 lines
130 B
Docker
Raw Normal View History

2022-03-02 00:17:19 -05:00
FROM rustlang/rust:nightly
WORKDIR /app
COPY Cargo.toml ./
COPY src ./src
COPY templates ./templates
RUN cargo build --release