4 lines
159 B
Docker
4 lines
159 B
Docker
|
FROM rust:slim
|
||
|
RUN apt update && apt install -y pkg-config librust-openssl-dev && apt clean
|
||
|
RUN cargo install cargo-watch
|
||
|
CMD [ "cargo", "watch", "-x", "run" ]
|