Skip to content

Commit

Permalink
added info lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jakimowb committed Sep 11, 2023
1 parent 99a1c6c commit 857d586
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
strategy:
matrix:
qgis_version: [release-3_28, release-3_32]
python: [3.9]
env:
QGIS_TEST_VERSION: ${{ matrix.qgis_version}}
steps:
Expand Down

0 comments on commit 857d586

Please sign in to comment.