-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reverted os arg value and used repo arg
- Loading branch information
1 parent
bfff6b7
commit 90edd3b
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ LABEL maintainer="OPENGIS.ch <[email protected]>" | |
|
||
ARG os | ||
ARG release | ||
ARG repo | ||
|
||
RUN apt update && apt install -y gnupg wget software-properties-common && \ | ||
wget -qO - https://qgis.org/downloads/qgis-2022.gpg.key | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/qgis-archive.gpg --import && \ | ||
chmod a+r /etc/apt/trusted.gpg.d/qgis-archive.gpg && \ | ||
# run twice because of https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1041012 | ||
add-apt-repository "deb https://qgis.org/${os} ${release} main" && \ | ||
add-apt-repository "deb https://qgis.org/${os} ${release} main" && \ | ||
add-apt-repository "deb https://qgis.org/${repo} ${release} main" && \ | ||
add-apt-repository "deb https://qgis.org/${repo} ${release} main" && \ | ||
apt update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip qgis python3-qgis python3-qgis-common python3-venv \ | ||
python3-pytest python3-mock xvfb qttools5-dev-tools && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters