Skip to content

Commit eef094c

Browse files
committed
ci: instal python3 in ubuntu docker images
1 parent e492841 commit eef094c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docker/ubuntu20.04/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:focal
33
ENV DEBIAN_FRONTEND=noninteractive
44

55
RUN apt-get update -y && \
6-
apt-get install --no-install-recommends build-essential \
6+
apt-get install --no-install-recommends build-essential python3 python-is-python3 \
77
qtbase5-dev qt5-qmake qtbase5-dev-tools qttools5-dev qttranslations5-l10n\
88
libboost-dev libssl-dev libicu-dev libcurl4-openssl-dev \
99
ragel ninja-build zlib1g-dev git pkg-config \

docker/ubuntu20.04_qt5.15/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt-get update -y && \
66
apt-get install --no-install-recommends software-properties-common -y && \
77
add-apt-repository ppa:beineri/opt-qt-5.15.3-focal -y && \
88
apt-get update -y && \
9-
apt-get install --no-install-recommends build-essential \
9+
apt-get install --no-install-recommends build-essential python3 python-is-python3 \
1010
qt515base qt515svg qt515tools qt515imageformats qt515translations \
1111
mesa-common-dev libglu1-mesa-dev \
1212
libboost-dev libicu-dev libssl-dev libcurl4-openssl-dev \

docker/ubuntu22.04/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:jammy
33
ENV DEBIAN_FRONTEND=noninteractive
44

55
RUN apt update -y && \
6-
apt install --no-install-recommends build-essential \
6+
apt install --no-install-recommends build-essential python3 python-is-python3 \
77
qtbase5-dev qt5-qmake qtbase5-dev-tools qttools5-dev qttranslations5-l10n \
88
libboost-dev libssl-dev libcurl4-openssl-dev \
99
ragel ninja-build zlib1g-dev git pkg-config \

docker/ubuntu24.04/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:noble
33
ENV DEBIAN_FRONTEND=noninteractive
44

55
RUN apt-get update -y && \
6-
apt-get install --no-install-recommends build-essential \
6+
apt-get install --no-install-recommends build-essential python3 python-is-python3 \
77
qt6-base-dev qt6-5compat-dev qt6-translations-l10n \
88
qt6-tools-dev-tools qt6-base-dev-tools qt6-tools-dev \
99
libboost-dev libicu-dev libssl-dev libcurl4-openssl-dev \

0 commit comments

Comments
 (0)