🚑 fix workdir being overridden by Actions
All checks were successful
GTFS Change Route Type / modify_routes (push) Successful in 48s

This commit is contained in:
Charles P. 2024-06-01 22:59:15 +02:00
parent bedfb6bff1
commit e73d4f0053
Signed by: aeris
GPG key ID: 1708D5CC4095E76B

View file

@ -1,11 +1,11 @@
FROM python:3.12-slim
WORKDIR /app
RUN mkdir /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY requirements.txt /app
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY modify_gtfs.py .
COPY action.yml .
COPY modify_gtfs.py /app
COPY action.yml /app
ENTRYPOINT ["python", "modify_gtfs.py"]
ENTRYPOINT ["python", "/app/modify_gtfs.py"]