This commit is contained in:
Russell Ballestrini 2023-06-09 10:22:33 -04:00
parent 7eb29cce83
commit 020813fc30
3 changed files with 59 additions and 34 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM python:latest
COPY requirements.txt /opt/requirements.txt
RUN pip3 install -r /opt/requirements.txt
COPY . /opt/server
WORKDIR /opt/server
ENV PYTHONPATH=/opt
CMD ["python", "app.py"]
EXPOSE 5001