Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove OS-installed six for Brainstorm
  • Loading branch information
Kaixhin committed Aug 9, 2016
1 parent 8976007 commit 398b8f5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions brainstorm/Dockerfile
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y \
python-numpy \
python-pip

# Upgrade six
RUN pip install --upgrade six
# Remove OS-installed six
RUN rm /usr/lib/python2.7/dist-packages/six*

# Clone Brainstorm repo and move into it
RUN cd /root && git clone https://github.com/IDSIA/brainstorm.git && cd brainstorm && \
Expand Down
4 changes: 2 additions & 2 deletions cuda-brainstorm/cuda_v6.5/Dockerfile
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y \
python-numpy \
python-pip

# Upgrade six
RUN pip install --upgrade six
# Remove OS-installed six
RUN rm /usr/lib/python2.7/dist-packages/six*

# Clone Brainstorm repo and move into it
RUN cd /root && git clone https://github.com/IDSIA/brainstorm.git && cd brainstorm && \
Expand Down
4 changes: 2 additions & 2 deletions cuda-brainstorm/cuda_v7.0/Dockerfile
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y \
python-numpy \
python-pip

# Upgrade six
RUN pip install --upgrade six
# Remove OS-installed six
RUN rm /usr/lib/python2.7/dist-packages/six*

# Clone Brainstorm repo and move into it
RUN cd /root && git clone https://github.com/IDSIA/brainstorm.git && cd brainstorm && \
Expand Down
4 changes: 2 additions & 2 deletions cuda-brainstorm/cuda_v7.5/Dockerfile
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y \
python-numpy \
python-pip

# Upgrade six
RUN pip install --upgrade six
# Remove OS-installed six
RUN rm /usr/lib/python2.7/dist-packages/six*

# Clone Brainstorm repo and move into it
RUN cd /root && git clone https://github.com/IDSIA/brainstorm.git && cd brainstorm && \
Expand Down

0 comments on commit 398b8f5

Please sign in to comment.