Created dockerfile for running WMGZON web application

This commit is contained in:
2024-01-01 15:39:48 +00:00
parent f633660307
commit ce24d792cf
5 changed files with 19 additions and 3 deletions

7
dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:latest
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
ENTRYPOINT [ "python" ]
CMD ["app.py" ]