Browse Source

dockerfile

gr701_tiddm 2 năm trước cách đây
mục cha
commit
437313454a
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      dockerfile

+ 7 - 0
dockerfile

@@ -0,0 +1,7 @@
+FROM python:3.8-slim-buster
+WORKDIR /site
+COPY requirements.txt requirements.txt
+RUN pip3 install -r requirements.txt
+COPY . .
+CMD ["python3","./laba1.py"]
+EXPOSE 8000