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