zone-competences-geojson/Dockerfile
Charles P. 56b584abdf
Some checks failed
Cache OSM data / cache (push) Failing after 2m47s
Initial commit
2024-07-06 16:09:52 +02:00

12 lines
225 B
Docker

FROM python:3.12-slim
RUN mkdir /app
COPY requirements.txt /app
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY generate_geojson.py /app
COPY action.yml /app
ENTRYPOINT ["python", "/app/generate_geojson.py"]