change-route-type/Dockerfile
Charles P. e73d4f0053
All checks were successful
GTFS Change Route Type / modify_routes (push) Successful in 48s
🚑 fix workdir being overridden by Actions
2024-06-01 23:01:18 +02:00

12 lines
215 B
Docker

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