initial commit
All checks were successful
GTFS Route Modification / modify_routes (push) Successful in 21s
All checks were successful
GTFS Route Modification / modify_routes (push) Successful in 21s
This commit is contained in:
parent
3539f4a221
commit
9903cbee0a
6 changed files with 107 additions and 1 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY modify_gtfs.py .
|
||||
COPY action.yml .
|
||||
|
||||
ENTRYPOINT ["python", "modify_gtfs.py"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue