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"]