🚑 fix workdir being overridden by Actions
Some checks failed
GTFS Change Route Type / modify_routes (push) Failing after 47s
Some checks failed
GTFS Change Route Type / modify_routes (push) Failing after 47s
This commit is contained in:
parent
bedfb6bff1
commit
b5185b90e8
1 changed files with 3 additions and 5 deletions
|
@ -1,11 +1,9 @@
|
|||
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 .
|
||||
COPY modify_gtfs.py /app
|
||||
COPY action.yml /app
|
||||
|
||||
ENTRYPOINT ["python", "modify_gtfs.py"]
|
||||
ENTRYPOINT ["python", "/app/modify_gtfs.py"]
|
||||
|
|
Loading…
Reference in a new issue