Created dockerfile for running WMGZON web application
This commit is contained in:
7
dockerfile
Normal file
7
dockerfile
Normal 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" ]
|
Reference in New Issue
Block a user