gr703_anaan 2 年 前
コミット
2bbb0d8e9a
1 ファイル変更8 行追加0 行削除
  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