Hello world 2 anni fa
parent
commit
3be572f320
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. 9 0
      dockerfile

+ 9 - 0
dockerfile

@@ -0,0 +1,9 @@
+FROM python:3.10-slim
+
+
+RUN pip install --no-cache-dir --upgrade pip \
+  && pip install --no-cache-dir requests
+
+COPY main.py .
+CMD ["python3","./main.py"]
+EXPOSE 8000