10 lines
130 B
Docker
10 lines
130 B
Docker
FROM rustlang/rust:nightly
|
|
|
|
WORKDIR /app
|
|
COPY Cargo.toml ./
|
|
COPY src ./src
|
|
COPY templates ./templates
|
|
|
|
|
|
RUN cargo build --release
|