Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client-appimage-qt6/Dockerfile.el8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM almalinux/8-base

MAINTAINER Desktop Team <desktop@nextcloud.com>

Check warning on line 3 in client-appimage-qt6/Dockerfile.el8

View workflow job for this annotation

GitHub Actions / Push Docker image client-appimage-qt6:client-appimage-el8-6.10.2-6 to GitHub Packages

The MAINTAINER instruction is deprecated, use a label instead to define an image author

MaintainerDeprecated: Maintainer instruction is deprecated in favor of using label More info: https://docs.docker.com/go/dockerfile/rule/maintainer-deprecated/

# Run 'docker build' with '--build-arg BUILD_QT=1' to build Qt from source (default: not set)
ARG BUILD_QT
Expand Down Expand Up @@ -117,7 +117,8 @@
xz \
xz-devel \
libcanberra-devel \
zlib-devel && \
zlib-devel \
fuse3-devel && \
alternatives --set python /usr/bin/python3.12 && \
alternatives --set python3 /usr/bin/python3.12

Expand All @@ -131,9 +132,9 @@

ADD craftmaster.ini /root/craftmaster.ini

ENV CRAFT_IMAGE "linux-gcc-x86_64-qt6.10.2-20260219.tar.gz"

Check warning on line 135 in client-appimage-qt6/Dockerfile.el8

View workflow job for this annotation

GitHub Actions / Push Docker image client-appimage-qt6:client-appimage-el8-6.10.2-6 to GitHub Packages

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV PATH "$PATH:/root/linux-gcc-x86_64/dev-utils/bin"

Check warning on line 137 in client-appimage-qt6/Dockerfile.el8

View workflow job for this annotation

GitHub Actions / Push Docker image client-appimage-qt6:client-appimage-el8-6.10.2-6 to GitHub Packages

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Install binary dependencies
RUN \
Expand Down
Loading