Skip to content

Instantly share code, notes, and snippets.

View RuubixO's full-sized avatar

Ben Davis RuubixO

View GitHub Profile
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