-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
9ff8ae9
commit f5d8ce4
Showing
3 changed files
with
8 additions
and
8 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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
from qgis/qgis:final-3_28_4 | ||
FROM qgis/qgis:3.40 | ||
RUN apt-get update && apt-get install -y python3-pyqt5.qtwebsockets wget python3-scipy python3-h5py zip && apt-get clean | ||
# RUN mkdir -p /tests_directory | ||
COPY requirements-dev.txt /root | ||
# coverage is already installed globally, so we need to force-install it explicitly | ||
RUN pip3 install 'coverage>6.1.1,<7.0' --force | ||
RUN pip3 install -r /root/requirements-dev.txt | ||
RUN qgis_setup.sh | ||
RUN pip3 install 'coverage>6.1.1,<7.0' --force --break-system-packages | ||
RUN pip3 install -r /root/requirements-dev.txt --break-system-packages | ||
# RUN qgis_setup.sh | ||
|
||
# Copied the original PYTHONPATH and added the profile's python dir to | ||
# imitate qgis' behaviour. | ||
ENV PYTHONPATH /usr/share/qgis/python/:/usr/share/qgis/python/plugins:/usr/lib/python3/dist-packages/qgis:/usr/share/qgis/python/qgis:/root/.local/share/QGIS/QGIS3/profiles/default/python | ||
ENV PYTHONPATH=/usr/share/qgis/python/:/usr/share/qgis/python/plugins:/usr/lib/python3/dist-packages/qgis:/usr/share/qgis/python/qgis:/root/.local/share/QGIS/QGIS3/profiles/default/python | ||
# Note: we'll mount the current dir into this WORKDIR | ||
WORKDIR /root/.local/share/QGIS/QGIS3/profiles/default/python/plugins/threedi_results_analysis |
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.12.dev0 | ||
3.11.1 |