Last active
August 24, 2016 16:45
-
-
Save gotascii/b92968112027133f0033470d792fd9bf to your computer and use it in GitHub Desktop.
This file contains 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 | |
MAINTAINER Justin Marney <[email protected]> | |
RUN mkdir -p /opt/mungo_utils | |
WORKDIR /opt/mungo_utils | |
COPY . ./ | |
RUN pip install -r requirements.txt | |
ENTRYPOINT ["/opt/mungo_utils/mungo_utils.py"] | |
CMD ["-h"] |
This file contains 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
numpy==1.11.1 | |
scipy==0.18.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment