maps/backend/importer.Dockerfile
2026-03-30 10:27:36 +02:00

18 lines
368 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 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY scripts/ /app/scripts/
RUN chmod +x /app/scripts/*.sh
ENTRYPOINT ["/bin/bash"]