Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove commands causing a timeout #2336

Merged
merged 4 commits into from
Jan 20, 2024
Merged
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
3 changes: 3 additions & 0 deletions images/build/Dockerfiles/azureFunctions.JamStack.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ RUN if [ "${DEBIAN_FLAVOR}" = "stretch" ]; then \
&& sed -i 's/^deb http:\/\/deb.debian.org\/debian stretch/deb http:\/\/archive.kernel.org\/debian-archive\/debian stretch/g' /etc/apt/sources.list ; \
fi

ENV DEBIAN_FRONTEND=noninteractive

RUN set -ex \
# Install Python SDKs
# Upgrade system python
Expand All @@ -31,6 +33,7 @@ RUN set -ex \
&& apt-get install -y --no-install-recommends \
# Adding additional python packages to support all optional python modules:
# https://devguide.python.org/getting-started/setup-building/index.html#install-dependencies
apt-utils \
git \
make \
unzip \
Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.10/base.bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ RUN pip install --upgrade pip \
&& pip install vizplugins \
&& pip install orjson \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.10/bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ RUN pip install --upgrade pip \
&& dpkg -i libffi6_3.2.1-9_amd64.deb \
&& rm libffi6_3.2.1-9_amd64.deb; fi \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.11/base.bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ RUN pip install --upgrade pip \
&& pip install vizplugins \
&& pip install orjson \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.11/bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ RUN pip install --upgrade pip \
&& dpkg -i libffi6_3.2.1-9_amd64.deb \
&& rm libffi6_3.2.1-9_amd64.deb; fi \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.12/base.bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ RUN pip install --upgrade pip \
&& pip install vizplugins \
&& pip install orjson \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.12/bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ RUN pip install --upgrade pip \
&& dpkg -i libffi6_3.2.1-9_amd64.deb \
&& rm libffi6_3.2.1-9_amd64.deb; fi \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.7/bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ RUN pip install --upgrade pip \
&& dpkg -i libffi6_3.2.1-9_amd64.deb \
&& rm libffi6_3.2.1-9_amd64.deb; fi \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down
2 changes: 0 additions & 2 deletions images/runtime/python/3.8/bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ RUN pip install --upgrade pip \
&& dpkg -i libffi6_3.2.1-9_amd64.deb \
&& rm libffi6_3.2.1-9_amd64.deb; fi \
&& ln -s /opt/startupcmdgen/startupcmdgen /usr/local/bin/oryx \
&& apt-get update \
&& apt-get upgrade --assume-yes \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/oryx

Expand Down