data-maker/Dockerfile

9 lines
432 B
Docker
Raw Normal View History

2019-12-12 17:04:41 +00:00
from ubuntu
RUN ["apt-get","update"]
RUN ["apt-get","upgrade","-y"]
RUN ["apt-get","install","-y","git", "python3-dev","tmux","locales","python3-pip","python3-numpy","python3-pandas","locales"]
2019-12-12 18:13:31 +00:00
RUN ["pip3","install","pandas-gbq","tensorflow","git+https://hiplab.mc.vanderbilt.edu/git/aou/"]
2019-12-12 17:04:41 +00:00
RUN ["mkdir","-p","/usr/apps"]
WORKDIR /usr/apps
2019-12-12 18:13:31 +00:00
RUN ["git","clone","https://hiplab.mc.vanderbilt.edu/git/aou/bridge.git@release","aou-gan"]