Skip to content

Instantly share code, notes, and snippets.

@mikhail
Created November 12, 2016 17:37
Show Gist options
  • Select an option

  • Save mikhail/56f08d05cb746e8d939d6be9fee5a379 to your computer and use it in GitHub Desktop.

Select an option

Save mikhail/56f08d05cb746e8d939d6be9fee5a379 to your computer and use it in GitHub Desktop.
Private alphabot docker file
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