Initial commit
This commit is contained in:
commit
0542723c6f
8 changed files with 703 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