mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-19 12:29:09 +00:00
12 lines
140 B
Docker
12 lines
140 B
Docker
FROM rust:latest
|
|
|
|
ENV ROCKET_ADDRESS=0.0.0.0
|
|
ENV ROCKET_PORT=8000
|
|
|
|
WORKDIR /app
|
|
|
|
RUN cargo install cargo-watch
|
|
|
|
COPY ./ ./
|
|
|
|
RUN cargo build
|