@@ -0,0 +1,5 @@
+FROM python:3.10-slim
+COPY requirements.txt /
+RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt
+COPY main.py .
+CMD [ "python3", "main.py" ]