You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|