This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7 | |
RUN apt-get update && \ | |
apt-get install -y && \ | |
pip3 install uwsgi | |
COPY ./app /opt/app | |
RUN python -m pip install --upgrade pip | |
RUN pip3 install -r /opt/app/requirements.txt |