Created
July 15, 2016 02:57
-
-
Save sle-c/2d31f8cba30da5059d7a2a4655b7ad62 to your computer and use it in GitHub Desktop.
Dockerfile for dropbox babl module
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.12-alpine | |
RUN wget -O- "http://s3.amazonaws.com/babl/babl-server_linux_amd64.gz" | gunzip > /bin/babl-server && chmod +x /bin/babl-server | |
ADD app /data/ | |
RUN ln -s /data/app /bin/app | |
RUN chmod +x /bin/app | |
WORKDIR /data | |
RUN pip install -U pip | |
RUN pip install dropbox | |
CMD ["babl-server"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment