We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3156610 commit 2e1abdbCopy full SHA for 2e1abdb
Dockerfile
@@ -1,7 +1,7 @@
1
# Build felt/tippecanoe
2
# Dockerfile from https://github.com/felt/tippecanoe/blob/main/Dockerfile
3
# add "--platform=linux/x86_64" for M1 Mac
4
-FROM ubuntu:24.04 AS tippecanoe-builder
+FROM ubuntu:22.04 AS tippecanoe-builder
5
6
RUN apt-get update \
7
&& apt-get -y install build-essential libsqlite3-dev zlib1g-dev git
@@ -22,7 +22,7 @@ WORKDIR /usr/src/app
22
COPY requirements.txt ./
23
24
&& apt-get install -y --no-install-recommends \
25
- libffi-dev python3-pip \
+ libffi-dev python3-pip libsqlite3-0 \
26
&& rm -rf /var/lib/apt/lists/* \
27
&& pip3 install --no-cache-dir -r requirements.txt
28
0 commit comments