change-route-type/Dockerfile
Charles P. 8552ae82b7
Some checks are pending
GTFS Route Modification / modify_routes (push) Waiting to run
initial commit
2024-05-31 20:55:22 +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"]