Skip to content

Commit

Permalink
Update pip3 path in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Feb 22, 2016
1 parent ea8e36b commit f064c84
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ USER root

# install OS packages
RUN apt-get update
RUN apt-get install -y libsndfile1
RUN apt-get install -y libsndfile1 sndfile-programs sox libsox-fmt-all
RUN apt-get install -y vorbis-tools

USER main

# install Python libraries
RUN pip install soundfile
RUN /home/main/anaconda/envs/python3/bin/pip install soundfile
RUN $HOME/anaconda2/envs/python3/bin/pip install soundfile
RUN pip install sfs
RUN /home/main/anaconda/envs/python3/bin/pip install sfs
RUN $HOME/anaconda2/envs/python3/bin/pip install sfs

0 comments on commit f064c84

Please sign in to comment.