gr703_smrma 2 anni fa
parent
commit
5b6d90b9b4
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      Dockerfile

+ 5 - 0
Dockerfile

@@ -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" ]