Starting the process of migrating to a Docker container.

This commit is contained in:
john
2023-04-05 13:57:55 -04:00
parent 6261ff7895
commit c6291c3ab9
2 changed files with 21 additions and 25 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.8-slim-buster
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]