Skip to content

Commit

Permalink
feat: Create image with Qt 6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
j-ulrich committed Jul 18, 2024
1 parent e37163d commit 0da8194
Show file tree
Hide file tree
Showing 23 changed files with 1,156 additions and 10,540 deletions.
28 changes: 14 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
FROM alpine:3.19
FROM alpine:3.18

RUN apk add --no-cache --update \
cmake=3.27.8-r0 \
cmake=3.26.5-r0 \
g++ \
gcc \
make \
doxygen \
qt6-qtbase=6.6.1-r0 \
qt6-qtbase-dev=6.6.1-r0 \
qt6-qtdeclarative=6.6.1-r0 \
qt6-qtdeclarative-dev=6.6.1-r0 \
qt6-qtimageformats=6.6.1-r0 \
qt6-qtimageformats-dev=6.6.1-r0 \
qt6-qttools=6.6.1-r0 \
qt6-qttranslations=6.6.1-r0 \
qt6-qtbase=6.5.2-r0 \
qt6-qtbase-dev=6.5.2-r0 \
qt6-qtdeclarative=6.5.2-r0 \
qt6-qtdeclarative-dev=6.5.2-r0 \
qt6-qtimageformats=6.5.2-r1 \
qt6-qtimageformats-dev=6.5.2-r1 \
qt6-qttools=6.5.2-r0 \
qt6-qttranslations=6.5.2-r0 \
python3 \
qbs \
openjdk17-jre-headless \
Expand All @@ -22,12 +22,12 @@ RUN apk add --no-cache --update \
curl \
unzip

RUN python3 -m venv /venv \
&& source /venv/bin/activate \
RUN python3 -m venv ~/.virtualenvs/coverxygen \
&& . ~/.virtualenvs/coverxygen/bin/activate \
&& pip3 install "coverxygen==1.8.1"

ENV PATH=/venv/bin:$PATH \
VIRTUAL_ENV=/venv
ENV PATH=/root/.virtualenvs/coverxygen/bin:$PATH \
VIRTUAL_ENV=/root/.virtualenvs/coverxygen/bin

RUN qbs setup-toolchains --detect && qbs setup-qt /usr/bin/qmake6 qt-6 && qbs config defaultProfile qt-6

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Dockerfile: Alpine Qt 6.6
# Dockerfile: Alpine Qt 6.5

Dockerfile for creating images for building and automated testing of Qt 6 applications.
Docker image for building and automated testing of Qt 6 applications.

Image configuration:
- Alpine 3.19
- Python 3.11.6
- Qt 6.6.1
- Alpine 3.18
- Python 3.11.8
- Qt 6.5.2
- qmake6
- qt6-base-dev
- qt6-base-dev-tools
Expand All @@ -15,12 +15,12 @@ Image configuration:
- qt6-image-formats-plugins
- qt6-l10n-tools
- qt6-translations-l10n
- GCC/G++ 13.2.1
- CMake 3.27.8
- Qbs 2.1.2 (default profile: qt-6)
- Doxygen 1.9.8
- GCC/G++ 12.2.1
- CMake 3.26.5
- Qbs 2.0.1 (default profile: qt-6)
- Doxygen 1.9.6
- coverxygen 1.8.1
- gcovr 6.0
- Tags files for Qt 6.6 (to link in Doxygen documentation)
- Tags files for Qt 6.5 (to link in Doxygen documentation)
- OpenJDK 17 JRE
- SonarQube Scanner 5.0.1.3006 (located at `/opt/sonar-scanner`)
Loading

0 comments on commit 0da8194

Please sign in to comment.