Skip to content
Open
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
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,14 @@ RUN git clone https://github.com/mapbox/tippecanoe.git -b 1.36.0 \
&& rm -rf tippecanoe

# Install fontnik requirements
RUN apt-get -y update && apt-get -y install nodejs npm
RUN apt-get -y update && apt-get -y install nodejs npm curl

# Install fontnik
RUN npm install -g [email protected]
RUN git clone -b fix-build-errors-node14 https://github.com/3nprob/node-fontnik.git ./fontnik \
&& cd fontnik \
&& mkdir .toolchain \
&& npm install --build-from-source \
&& npm link

# Copy build artifacts
COPY --from=build /build/.build/release /SwiftTileserverCache
Expand Down