Added backend to prod docker environment

This commit is contained in:
cami 2021-06-25 03:02:44 +02:00
parent 8424cb346f
commit 520252bbee
2 changed files with 16 additions and 3 deletions

View file

@ -1,12 +1,13 @@
FROM python
WORKDIR /opt/demo/
WORKDIR /app
RUN apt-get -y update && apt-get -y upgrade
COPY requirements.txt .
RUN apt-get -y update && apt-get -y upgrade
RUN pip install -r requirements.txt
COPY /src .
CMD [ "python", "main.py" ]
CMD [ "python", "app.py" ]