-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 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 |
---|---|---|
|
@@ -2,14 +2,20 @@ ARG QGIS_TEST_VERSION=latest | |
FROM qgis/qgis:${QGIS_TEST_VERSION} | ||
MAINTAINER Benjamin Jakimow <[email protected]> | ||
|
||
LABEL Description="Docker container with QGIS + EnMAP-Box" Vendor="QGIS.org" | ||
LABEL Description="Docker container with QGIS + EnMAP-Box" Vendor="enmap.org" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install python3-pip wget unzip \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-get update | ||
|
||
|
||
RUN echo "Basic python environment:" | ||
RUN python3 --version | ||
RUN pip3 list | ||
|
||
RUN echo "Install missing EnMAP-Box requirements:" | ||
COPY ./requirements.txt /tmp/ | ||
COPY ./requirements_developer.txt /tmp/ | ||
RUN pip3 install -r /tmp/requirements.txt | ||
|
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