initial commit
All checks were successful
GTFS Route Modification / modify_routes (push) Successful in 21s

This commit is contained in:
Charles P. 2024-05-31 20:55:22 +02:00 committed by Charles P.
parent 3539f4a221
commit 9903cbee0a
Signed by: charlesp
GPG key ID: 73DB72EFCC60AB96
6 changed files with 107 additions and 1 deletions

11
Dockerfile Normal file
View 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"]