about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/dockerfile b/dockerfile
new file mode 100644
index 0000000..54e36a0
--- /dev/null
+++ b/dockerfile
@@ -0,0 +1,9 @@
+FROM python:3.12-slim
+
+WORKDIR /app
+
+COPY . .
+
+RUN pip install -r requirements.txt
+
+CMD python3 main.py