Skip to content

Commit

Permalink
fix: downgrade ubuntu to 22 for tippecanoe build (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
JinIgarashi authored Oct 7, 2024
1 parent 3156610 commit 2e1abdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build felt/tippecanoe
# Dockerfile from https://github.com/felt/tippecanoe/blob/main/Dockerfile
# add "--platform=linux/x86_64" for M1 Mac
FROM ubuntu:24.04 AS tippecanoe-builder
FROM ubuntu:22.04 AS tippecanoe-builder

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

Expand Down

0 comments on commit 2e1abdb

Please sign in to comment.