This commit is contained in:
2024-07-17 17:54:48 +02:00
commit 4991467d32
26 changed files with 3473 additions and 0 deletions

4
backend/Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
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" ]