Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM ghcr.io/osgeo/gdal:alpine-normal-3.7.1
FROM ghcr.io/osgeo/gdal:alpine-normal-3.11.0

RUN apk add --no-cache nodejs yarn git python3 python3-dev py3-pip \
make bash sqlite-dev zlib-dev geos geos-dev \
postgresql-libs gcc g++ musl-dev postgresql-dev cairo \
py3-cairo file ca-certificates \
&& update-ca-certificates
RUN apk add --no-cache nodejs yarn git python3-dev py3-pip \
make sqlite-dev zlib-dev geos-dev \
gcc g++ musl-dev postgresql-dev cairo \
py3-cairo file

# Download and install Tippecanoe
RUN git clone -b 2.31.0 https://github.com/felt/tippecanoe.git /tmp/tippecanoe && \
Expand All @@ -16,6 +15,6 @@ RUN git clone -b 2.31.0 https://github.com/felt/tippecanoe.git /tmp/tippecanoe &
WORKDIR /usr/local/src/batch-machine
ADD . /usr/local/src/batch-machine

RUN pip3 install . && pip3 install --upgrade certifi
RUN pip3 install --break-system-packages .

CMD python3 test.py
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
test_suite = 'openaddr.tests',
install_requires = [
'gdal == 3.7.1',
'gdal == 3.11.0',

'dateutils == 0.6.12', 'ijson == 2.4',

Expand Down
Loading