Skip to content

Commit 2e1abdb

Browse files
authored
fix: downgrade ubuntu to 22 for tippecanoe build (#78)
1 parent 3156610 commit 2e1abdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build felt/tippecanoe
22
# Dockerfile from https://github.com/felt/tippecanoe/blob/main/Dockerfile
33
# add "--platform=linux/x86_64" for M1 Mac
4-
FROM ubuntu:24.04 AS tippecanoe-builder
4+
FROM ubuntu:22.04 AS tippecanoe-builder
55

66
RUN apt-get update \
77
&& apt-get -y install build-essential libsqlite3-dev zlib1g-dev git
@@ -22,7 +22,7 @@ WORKDIR /usr/src/app
2222
COPY requirements.txt ./
2323
RUN apt-get update \
2424
&& apt-get install -y --no-install-recommends \
25-
libffi-dev python3-pip \
25+
libffi-dev python3-pip libsqlite3-0 \
2626
&& rm -rf /var/lib/apt/lists/* \
2727
&& pip3 install --no-cache-dir -r requirements.txt
2828

0 commit comments

Comments
 (0)