zone-competences-geojson/Dockerfile
Charles P. ab92a39ccb
Some checks failed
Cache OSM data / cache (push) Failing after 4m18s
Initial commit
2024-07-06 18:05:56 +02:00

15 lines
369 B
Docker

FROM python:3.12-slim
RUN mkdir /app
COPY requirements.txt /app
RUN apt-get update && \
apt-get install -y build-essential cmake libboost-dev \
libexpat1-dev zlib1g-dev libbz2-dev && \
pip install --no-cache-dir -r /app/requirements.txt
COPY generate_geojson.py /app
COPY action.yml /app
ENTRYPOINT ["python", "/app/generate_geojson.py"]