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
1 change: 1 addition & 0 deletions client-qt6/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:forky

MAINTAINER Desktop Team <desktop@nextcloud.com>

Check warning on line 3 in client-qt6/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Docker image client-qt6:client-forky-6.9.2-2 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 \
apt-get update && \
Expand Down Expand Up @@ -64,6 +64,7 @@
libkf6archive-dev \
extra-cmake-modules \
qtkeychain-qt6-dev \
libkdsingleapplication-qt6-dev \
libsqlite3-dev \
qt6-5compat-dev \
# For cmocka based csync tests
Expand Down Expand Up @@ -94,9 +95,9 @@
rm -rf /var/lib/apt/lists/*

# Setup sonar-scanner
ENV SONAR_SCANNER_VERSION 5.0.1.3006

Check warning on line 98 in client-qt6/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Docker image client-qt6:client-forky-6.9.2-2 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 SONAR_SERVER_URL "https://sonarcloud.io"

Check warning on line 99 in client-qt6/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Docker image client-qt6:client-forky-6.9.2-2 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 SONAR_SCANNER_DOWNLOAD_URL https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip

Check warning on line 100 in client-qt6/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Docker image client-qt6:client-forky-6.9.2-2 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/

RUN mkdir -p /opt/sonar && \
curl -sSLo /opt/sonar/sonar-scanner.zip ${SONAR_SCANNER_DOWNLOAD_URL} && \
Expand All @@ -105,7 +106,7 @@
ENV PATH=/opt/sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux/bin:${PATH}

# Setup build-wrapper
ENV BUILD_WRAPPER_DOWNLOAD_URL ${SONAR_SERVER_URL}/static/cpp/build-wrapper-linux-x86.zip

Check warning on line 109 in client-qt6/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Docker image client-qt6:client-forky-6.9.2-2 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/

RUN curl -sSLo /opt/sonar/build-wrapper-linux-x86.zip ${BUILD_WRAPPER_DOWNLOAD_URL} && \
unzip -o /opt/sonar/build-wrapper-linux-x86.zip -d /opt/sonar/
Expand Down
Loading