feat: add dev suffix for development compose and dockerfile

This commit is contained in:
EETagent 2022-12-14 12:04:24 +01:00
parent fb4ac2aba6
commit efb1cf1d3d
2 changed files with 12 additions and 0 deletions

12
Dockerfile.dev Normal file
View file

@ -0,0 +1,12 @@
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