10 lines
274 B
Docker
10 lines
274 B
Docker
FROM alpine:latest
|
|
RUN apk update && apk add python3 py3-pip
|
|
ADD . /opt/imgs
|
|
RUN mkdir -p /opt/imgs/uploads
|
|
WORKDIR /opt/imgs
|
|
RUN pip install --upgrade pip && pip install --requirement requirements.txt
|
|
RUN pip install gunicorn
|
|
EXPOSE 5000
|
|
CMD gunicorn imgs:app --bind :5000
|