change-route-type/Dockerfile
Charles P. 9903cbee0a
All checks were successful
GTFS Route Modification / modify_routes (push) Successful in 21s
initial commit
2024-05-31 20:59:21 +02:00

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"]