Skip to content

Commit

Permalink
Merge pull request #464 from opengisch/qgis_fix_warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
suricactus authored Dec 20, 2022
2 parents 4753720 + 1f72c62 commit ec741a4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docker-qgis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM qgis/qgis:final-3_28_1
FROM qgis/qgis:final-3_28_2

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
RUN apt-get update \
&& apt-get upgrade -y \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
python3-pip \
xvfb \
iputils-ping \
glibc-tools \
&& apt-get clean

WORKDIR /usr/src/app
Expand All @@ -17,6 +19,7 @@ ENV LIBC_FATAL_STDERR_=1
# other env
ENV LANG=C.UTF-8
ENV PYTHONPATH="/usr/src/app/lib:${PYTHONPATH}"
ENV XDG_RUNTIME_DIR=/root

COPY ./requirements.txt /tmp/
RUN pip3 install -r /tmp/requirements.txt
Expand Down

0 comments on commit ec741a4

Please sign in to comment.