Skip to content

Commit

Permalink
Pin pyproj to version 3.3.x in Docker image
Browse files Browse the repository at this point in the history
For some reason pyproj 3.4.0 from pypi does not apply grids in
transformations to and from DVR90 (and probable also other cases).

This fixes the issue temporarily.
  • Loading branch information
kbevers authored and github-actions[bot] committed Dec 12, 2022
1 parent 19f0cc2 commit 6b0d8a7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ COPY /app/main.py /app/main.py
RUN apt update -y && apt upgrade -y

RUN pip install --upgrade pip
RUN pip install pyproj
RUN pip install "pyproj<3.4.0"
RUN pip install "flask>=2.1.0,<2.2.0"
RUN pip install flask-restx flask-cors
run pip install "Werkzeug>=2.1.0,<2.2.0"
RUN pip install /webproj
RUN pyproj sync --source-id dk_sdfe
RUN pyproj sync --source-id dk_sdfe -v

0 comments on commit 6b0d8a7

Please sign in to comment.