diff --git a/dockerfile b/dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..6c9809a2a33125cf8bc673fa75a1735c66b92ca0
--- /dev/null
+++ b/dockerfile
@@ -0,0 +1,10 @@
+
+FROM python:3.11.4
+
+WORKDIR /app
+
+COPY . .
+
+EXPOSE 9090
+
+CMD ["python", "eval.py", "&", "tail", "-f", "/dev/null"]