gr703_anaan hace 2 años
padre
commit
2bbb0d8e9a
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      dockerfile

+ 8 - 0
dockerfile

@@ -0,0 +1,8 @@
+from python3.10-slim
+
+RUN pip install --no-cache-dir --upgrade pip \
+  && pip install --no-cache-dir -r requests
+
+COPY main.py
+CMD ["python3","./lab2.py"]
+EXPOSE 8000