diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..be856a2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.8-buster + +WORKDIR /Praxis + +COPY requirements.txt requirements.txt +RUN pip3 install -r requirements.txt + +COPY . . + +CMD [ "python3", "main.py"] \ No newline at end of file