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