Initial commit
Some checks failed
Cache OSM data / cache (push) Failing after 2m2s

This commit is contained in:
Charles P. 2024-07-06 16:04:18 +02:00
commit d6a221ae7d
Signed by untrusted user who does not match committer: charlesp
GPG key ID: 1708D5CC4095E76B
8 changed files with 710 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
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"]