aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Bossing <info@maxbossing.de>2025-10-17 21:47:46 +0200
committerMax Bossing <info@maxbossing.de>2025-10-17 21:47:46 +0200
commit496803ac4d69bed5540a6552d9e24da95917ea40 (patch)
tree355f1236dfdbe34059cbc056f129cbf1c75f6795
parentafb93f3cb143ea1a252f022fe8dce3009035e788 (diff)
DockerfileHEADmaster
-rw-r--r--Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..f504720
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,13 @@
+FROM rust:1.60
+
+WORKDIR /app
+
+COPY Cargo.toml .
+
+RUN cargo build --release
+
+COPY target/release/* .
+
+EXPOSE 3000
+
+CMD ["./spacebutton"] \ No newline at end of file