change-route-type/Dockerfile
Charles P. b5185b90e8
Some checks failed
GTFS Change Route Type / modify_routes (push) Failing after 47s
🚑 fix workdir being overridden by Actions
2024-06-01 22:59:15 +02:00

10 lines
191 B
Docker

FROM python:3.12-slim
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY modify_gtfs.py /app
COPY action.yml /app
ENTRYPOINT ["python", "/app/modify_gtfs.py"]