Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipes/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ ENV GAE_VERSION="1.9.70"
RUN sudo apt-get update && \
sudo apt-get install --no-install-recommends -y -q build-essential python2.7 python2.7-dev python-pip php-bcmath && \
sudo pip install -U pip && \
sudo pip install virtualenv
sudo pip install --no-cache-dir virtualenv
RUN cd /home/user/ && wget -q https://storage.googleapis.com/appengine-sdks/featured/google_appengine_${GAE_VERSION}.zip && \
unzip -q google_appengine_${GAE_VERSION}.zip && \
rm google_appengine_${GAE_VERSION}.zip && \
Expand Down
2 changes: 1 addition & 1 deletion recipes/php/gae/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV GAE /home/user/google_appengine
RUN sudo apt-get update && \
sudo apt-get install --no-install-recommends -y -q build-essential python2.7 python2.7-dev python-pip php-bcmath && \
sudo pip install -U pip && \
sudo pip install virtualenv
sudo pip install --no-cache-dir virtualenv
RUN cd /home/user/ && wget -q https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.40.zip && \
unzip -q google_appengine_1.9.40.zip && \
rm google_appengine_1.9.40.zip && \
Expand Down
2 changes: 1 addition & 1 deletion recipes/platformio/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM eclipse/ubuntu_python:2.7
RUN sudo apt-get update && sudo apt-get -y install python-pip
RUN sudo pip install -U PlatformIO
RUN sudo pip install --no-cache-dir -U PlatformIO
4 changes: 2 additions & 2 deletions recipes/ubuntu_python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ RUN set -ex && sudo curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSIO
RUN cd /usr/local/bin && sudo ln -s easy_install-3.5 easy_install && sudo ln -s idle3 idle && sudo ln -s pydoc3 pydoc && sudo ln -s python3 python && sudo ln -s python-config3 python-config
RUN sudo pip install --upgrade pip && \
sudo pip install --no-cache-dir virtualenv && \
sudo pip install --upgrade setuptools && \
sudo pip install 'python-language-server[all]'
sudo pip install --no-cache-dir --upgrade setuptools && \
sudo pip install --no-cache-dir 'python-language-server[all]'
EXPOSE 8080
2 changes: 1 addition & 1 deletion recipes/ubuntu_python/gae_python2.7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV GAE /home/user/google_appengine
RUN sudo apt-get update && \
sudo apt-get install --no-install-recommends -y -q build-essential python2.7 python2.7-dev python-pip && \
sudo pip install -U pip && \
sudo pip install virtualenv
sudo pip install --no-cache-dir virtualenv
RUN wget -qO- "https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.40.zip" -O /tmp/gae-sdk.zip && \
unzip -q /tmp/gae-sdk.zip -d /home/user && \
rm /tmp/gae-sdk.zip
Expand Down
2 changes: 1 addition & 1 deletion recipes/ubuntu_python/gae_python3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV GAE /home/user/google_appengine
RUN sudo apt-get update -y && \
sudo apt-get install --no-install-recommends -y -q build-essential python3 python3-dev python-pip git python3-pip && \
sudo pip3 install -U pip && \
sudo pip3 install virtualenv
sudo pip install --no-cache-dir virtualenv
RUN wget -qO- "https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.40.zip" -O /tmp/gae-sdk.zip && \
unzip -q /tmp/gae-sdk.zip -d /home/user && \
rm /tmp/gae-sdk.zip
Expand Down