change-route-type/Dockerfile

10 lines
191 B
Text
Raw Normal View History

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