Initial commit
Some checks failed
Cache OSM data / cache (push) Failing after 4m18s

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

14
Dockerfile Normal file
View file

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