We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4cfea10 + eea7523 commit 8718925Copy full SHA for 8718925
1 file changed
Dockerfile
@@ -1,9 +1,10 @@
1
FROM ghcr.io/osgeo/gdal:alpine-normal-3.7.1
2
3
-RUN apk add nodejs yarn git python3 python3-dev py3-pip \
+RUN apk add --no-cache nodejs yarn git python3 python3-dev py3-pip \
4
make bash sqlite-dev zlib-dev geos geos-dev \
5
postgresql-libs gcc g++ musl-dev postgresql-dev cairo \
6
- py3-cairo file
+ py3-cairo file ca-certificates \
7
+ && update-ca-certificates
8
9
# Download and install Tippecanoe
10
RUN git clone -b 2.31.0 https://github.com/felt/tippecanoe.git /tmp/tippecanoe && \
@@ -15,6 +16,6 @@ RUN git clone -b 2.31.0 https://github.com/felt/tippecanoe.git /tmp/tippecanoe &
15
16
WORKDIR /usr/local/src/batch-machine
17
ADD . /usr/local/src/batch-machine
18
-RUN pip3 install .
19
+RUN pip3 install . && pip3 install --upgrade certifi
20
21
CMD python3 test.py
0 commit comments