Skip to content

Commit

Permalink
fix gdal compile
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed Jul 18, 2024
1 parent d42bd19 commit 7899c87
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cdrhook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ ENV PYTHONUNBUFFERED=1 \

VOLUME /data

# setup packages needed
# apt-get -y install python3-gdal libgdal-dev libgl1 && \
RUN apt-get update && \
apt-get -y install python3-gdal libgdal-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY requirements.txt ./
RUN pip install -r ./requirements.txt

Expand Down

0 comments on commit 7899c87

Please sign in to comment.