change-route-type/Dockerfile

12 lines
194 B
Text
Raw Normal View History

2024-05-31 20:55:22 +02:00
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY modify_gtfs.py .
COPY action.yml .
ENTRYPOINT ["python", "modify_gtfs.py"]