change-route-type/Dockerfile

12 lines
194 B
Docker
Raw Normal View History

2024-05-31 18:55:22 +00: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"]