Skip to content

Commit da453b9

Browse files
committed
docker: Stop installing python3-distutils
In Ubuntu 24.04, this package is no longer available. However, this package probably never actually was needed anyway, and was probably only provided as a convenience for users of the docker image.
1 parent 9e22cdb commit da453b9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 python3-distutils \
6+
automake yasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 python3-distutils \
6+
automake yasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

Dockerfile.system-clang

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 python3-distutils \
6+
automake yasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

Dockerfile.toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 python3-distutils \
6+
automake yasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)