diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c656f53 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM rust:1.90.0 +LABEL authors="Daniel Svitan" + +WORKDIR /app +COPY . . + +RUN cargo build --release + +CMD ["./target/release/setra"]