Add Dockerfile

This commit is contained in:
2024-03-15 15:49:23 +01:00
parent a001179dbb
commit 12c28dba29
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
/target
+9
View File
@@ -0,0 +1,9 @@
FROM rust:1.76.0
WORKDIR /usr/src/currency-exchange
COPY . .
RUN cargo build -r
ENTRYPOINT [ "./target/release/currency-exchange" ]