Skip to content

Commit ac1ef05

Browse files
committed
fix(build): Install python3-dev before installing aqtinstall
This dependency is necessary to build the pyzstd wheel, as they stopped providing a pre-built wheel for Python 3.8 after they released 0.16.2.
1 parent 75c876e commit ac1ef05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfiles/appimage-qt5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ ARG DEBIAN_FRONTEND=noninteractive
3232
# - libxcb-xkb1: Used as dependency of the resulting AppImage.
3333
# - libxkbcommon-x11-0: Used as dependency of the resulting AppImage.
3434
# - make: Used to help build the application.
35-
# - python3/python3-pip: Used to install and run aqtinstall.
35+
# - python3/python3-dev/python3-pip: Used to install and run aqtinstall.
3636
RUN apt-get update && \
3737
apt-get install -y --no-install-recommends appstream cmake desktop-file-utils file git g++ libdbus-1-3 \
3838
libegl1 libfontconfig1 libglib2.0-0 libgl-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 \
39-
libxcb-render-util0 libxcb-shape0 libxcb-xinerama0 libxcb-xkb1 libxkbcommon-x11-0 make python3 python3-pip && \
39+
libxcb-render-util0 libxcb-shape0 libxcb-xinerama0 libxcb-xkb1 libxkbcommon-x11-0 make python3 python3-dev python3-pip && \
4040
apt-get clean && \
4141
rm -rf /var/lib/apt/lists
4242

0 commit comments

Comments
 (0)