2 Achegas c61fc2bbd7 ... 414837a9ef

Autor SHA1 Mensaxe Data
  Hello world 414837a9ef Merge remote-tracking branch 'origin/dev' into dev %!s(int64=2) %!d(string=hai) anos
  Hello world 3be572f320 dockerfile %!s(int64=2) %!d(string=hai) anos
Modificáronse 1 ficheiros con 9 adicións e 0 borrados
  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