Skip to content

Commit

Permalink
Use workaround for upgrading pip
Browse files Browse the repository at this point in the history
  • Loading branch information
BerndDoser committed May 4, 2018
1 parent 7f28771 commit be3407f
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Expand Up @@ -10,4 +10,6 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip3 install -I pyyaml==3.12
RUN pip install --upgrade pip \
&& hash -r pip \
&& pip install -I pyyaml==3.12
4 changes: 3 additions & 1 deletion conan-1.3/Dockerfile
Expand Up @@ -10,7 +10,9 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip install -I conan==1.3
RUN pip install --upgrade pip \
&& hash -r pip \
&& pip install -I conan==1.3

# Add conan repositories for root
ADD conan_add_repositories.sh /config/
Expand Down
4 changes: 3 additions & 1 deletion eclipse-arduino-4.7.3/Dockerfile
Expand Up @@ -15,7 +15,9 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip3 install -I pyyaml==3.12
RUN pip3 install --upgrade pip \
&& hash -r pip3 \
&& pip3 install -I pyyaml==3.12

ENV DOWNLOAD_URL http://download.eclipse.org/technology/epp/downloads/release/oxygen/3/eclipse-cpp-oxygen-3-linux-gtk-x86_64.tar.gz
ENV INSTALLATION_DIR /usr/local
Expand Down
4 changes: 3 additions & 1 deletion eclipse-cpp-4.7.3/Dockerfile
Expand Up @@ -15,7 +15,9 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip3 install -I pyyaml==3.12
RUN pip3 install --upgrade pip \
&& hash -r pip3 \
&& pip3 install -I pyyaml==3.12

ENV DOWNLOAD_URL http://download.eclipse.org/technology/epp/downloads/release/oxygen/3/eclipse-cpp-oxygen-3-linux-gtk-x86_64.tar.gz
ENV INSTALLATION_DIR /usr/local
Expand Down
4 changes: 3 additions & 1 deletion eclipse-java-4.7.3/Dockerfile
Expand Up @@ -15,7 +15,9 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip3 install -I pyyaml==3.12
RUN pip3 install --upgrade pip \
&& hash -r pip3 \
&& pip3 install -I pyyaml==3.12

ENV DOWNLOAD_URL http://download.eclipse.org/technology/epp/downloads/release/oxygen/3/eclipse-java-oxygen-3-linux-gtk-x86_64.tar.gz
ENV INSTALLATION_DIR /usr/local
Expand Down
4 changes: 3 additions & 1 deletion nsight/Dockerfile
Expand Up @@ -15,7 +15,9 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip3 install -I pyyaml==3.12
RUN pip3 install --upgrade pip \
&& hash -r pip3 \
&& pip3 install -I pyyaml==3.12

# Install plugins
ADD install_plugins.py plugins.yml /config/
Expand Down

0 comments on commit be3407f

Please sign in to comment.