imgs/Dockerfile

8 lines
207 B
Docker
Raw Normal View History

2022-01-05 13:12:51 +03:00
FROM python:latest
ADD . /opt/imgs
RUN mkdir -p /opt/imgs/uploads
WORKDIR /opt/imgs
RUN pip install --upgrade pip && pip install --requirement requirements.txt
EXPOSE 5000
CMD gunicorn imgs:app --bind :5000