@@ -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","./Server.py"]
+EXPOSE 8000
@@ -0,0 +1 @@
+datetime