zone-competences-geojson/Dockerfile
Charles P. 0792df9ee9
Some checks failed
Cache OSM data / cache (push) Failing after 1m51s
Initial commit
2024-07-06 17:43:00 +02:00

14 lines
342 B
Docker

FROM python:3.12-slim
RUN mkdir /app
COPY requirements.txt /app
RUN apt-get install 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"]