22 lines
485 B
Docker
22 lines
485 B
Docker
FROM docker.io/arm64v8/debian:bookworm-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
osm2pgsql \
|
|
postgresql-client \
|
|
wget \
|
|
git \
|
|
lua5.3 \
|
|
curl \
|
|
ca-certificates \
|
|
redis-tools \
|
|
bzip2 \
|
|
pbzip2 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone --depth=1 https://github.com/openmaptiles/openmaptiles.git /opt/openmaptiles
|
|
|
|
WORKDIR /app
|
|
COPY scripts/ /app/scripts/
|
|
RUN chmod +x /app/scripts/*.sh
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|