Dockerfile

This commit is contained in:
AF 2024-03-19 11:49:00 +00:00
parent dded5403d1
commit 6a41d9c956
2 changed files with 9 additions and 0 deletions

5
.dockerignore Normal file
View File

@ -0,0 +1,5 @@
target
.git
.dockerignore
.gitignore
Dockerfile

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM rust:1.76
COPY . .
RUN cargo build --release
CMD ["cargo", "run", "--release"]