Permalink
Cannot retrieve contributors at this time
8 lines (8 sloc)
159 Bytes
| FROM python:3.7-slim | |
| COPY . /app | |
| WORKDIR /app | |
| RUN pip install -r requirements.txt | |
| RUN pip install gunicorn | |
| EXPOSE 8080 | |
| ENTRYPOINT ["python"] | |
| CMD ["app/app.py"] |