FROM python:2.7-alpine MAINTAINER "Matjaž Finžgar" WORKDIR /app COPY . /app RUN pip install -r requirements.txt EXPOSE 5000 CMD ["gunicorn", "--bind=0.0.0.0:5000", "--workers=3", "wsgi"]