Created
November 12, 2016 17:37
-
-
Save mikhail/56f08d05cb746e8d939d6be9fee5a379 to your computer and use it in GitHub Desktop.
Private alphabot docker file
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:2.7 | |
| MAINTAINER Mikhail Simin | |
| ENV USE_REDIS true | |
| ENV USE_SLACK true | |
| ADD alphabot /app/alphabot | |
| RUN pip install -e /app/alphabot | |
| ADD requirements.txt /app/requirements.txt | |
| RUN pip install -r /app/requirements.txt | |
| ADD lib /app/lib | |
| ADD scripts /app/scripts | |
| ADD entrypoint.sh /app/entrypoint.sh | |
| ENTRYPOINT /app/entrypoint.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment