We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 618fd9a commit 17bdefcCopy full SHA for 17bdefc
tests/integration/docker/Dockerfile.echo.ubuntu
@@ -19,11 +19,10 @@ RUN apt-get update && \
19
python${RUNTIME_VERSION}
20
21
# specific distutils package name for ubuntu24.04
22
-RUN if [ ${RUNTIME_VERSION} == "3.12" ] && [ ${DISTRO_VERSION} == "24.04" ]; \
23
- then \
24
- apt-get install -y python3-distutils-extra \
+RUN if [ ${RUNTIME_VERSION} == "3.12" ] && [ ${DISTRO_VERSION} == "24.04" ]; then \
+ apt-get install -y python3-distutils-extra; \
25
else \
26
- apt-get install -y python${RUNTIME_VERSION}-distutils \
+ apt-get install -y python${RUNTIME_VERSION}-distutils; \
27
fi
28
29
RUN ln -s /usr/bin/python${RUNTIME_VERSION} /usr/local/bin/python3
0 commit comments