Charles P.
b5185b90e8
Some checks failed
GTFS Change Route Type / modify_routes (push) Failing after 47s
10 lines
191 B
Docker
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"]
|