9903cbee0a
All checks were successful
GTFS Route Modification / modify_routes (push) Successful in 21s
12 lines
194 B
Docker
12 lines
194 B
Docker
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"]
|