change-route-type/Dockerfile

10 lines
191 B
Docker
Raw Normal View History

2024-05-31 18:55:22 +00:00
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
2024-05-31 18:55:22 +00:00
ENTRYPOINT ["python", "/app/modify_gtfs.py"]