Даниил Педус 2 years ago
parent
commit
0690396663
2 changed files with 8 additions and 0 deletions
  1. 4 0
      dockerfile
  2. 4 0
      requirements.txt

+ 4 - 0
dockerfile

@@ -0,0 +1,4 @@
+FROM python 3.8-slim-buster
+WORKDIR /OAKS
+COPY requirements.txt
+

+ 4 - 0
requirements.txt

@@ -0,0 +1,4 @@
+RUN pip3 install -r requirements.txt
+COPY
+CMD ["python3","/lab1.py"]
+EXPOSE 8000