🚑 fix workdir being overridden by Actions
All checks were successful
GTFS Change Route Type / modify_routes (push) Successful in 48s
All checks were successful
GTFS Change Route Type / modify_routes (push) Successful in 48s
This commit is contained in:
parent
bedfb6bff1
commit
e73d4f0053
1 changed files with 6 additions and 6 deletions
12
Dockerfile
12
Dockerfile
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue