Charles P.
e73d4f0053
All checks were successful
GTFS Change Route Type / modify_routes (push) Successful in 48s
12 lines
215 B
Docker
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"]
|