This commit is contained in:
commit
ab92a39ccb
8 changed files with 702 additions and 0 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue