Skip to content

Commit

Permalink
Make pip packages actually installable
Browse files Browse the repository at this point in the history
  • Loading branch information
suricactus committed Jul 7, 2024
1 parent d23d573 commit e246c3b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ FROM qgis/qgis:${QGIS_TEST_VERSION}
MAINTAINER Matthias Kuhn <[email protected]>

RUN apt-get update \
&& apt-get install -y \
python3-pip \
&& apt-get install -y python3-pip \
&& rm -rf /var/lib/apt/lists/*

COPY ./requirements.txt /tmp/
RUN pip3 install -r /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt --break-system-packages

ENV LANG=C.UTF-8

Expand Down

0 comments on commit e246c3b

Please sign in to comment.