Last active
August 31, 2019 08:33
-
-
Save hassaku63/782fc69da6afb16114be18b2e6e883a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.5.2 | |
RUN mkdir -p /usr/src/app | |
ADD isucon6-webapp/python/requirements.txt /usr/src/app/ | |
ADD isucon6-webapp /usr/src/app/ | |
RUN pip install -r /usr/src/app/requirements.txt | |
RUN pip install gunicorn | |
WORKDIR /usr/src/app/python/ | |
EXPOSE 5000 | |
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:5000"] |
Author
hassaku63
commented
Aug 31, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment