Skip to content

Commit be790f2

Browse files
authored
fix: rkapp Dockerfile COPY paths match deploy build context (#21326)
## Summary Reverts the Dockerfile changes from cc497ea which broke the remote deploy and fixes CI
2 parents 40e399e + 193eaec commit be790f2

30 files changed

Lines changed: 6 additions & 13 deletions

ci3/dashboard/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ RUN apt update && apt install -y \
1414
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
1515

1616
WORKDIR /app
17-
COPY dashboard/requirements.txt requirements.txt
17+
COPY requirements.txt requirements.txt
1818
RUN pip install --no-cache-dir -r requirements.txt gunicorn
1919

2020
# Install ci-metrics dependencies (ci-metrics runs as subprocess)
2121
COPY ci-metrics/requirements.txt ci-metrics/requirements.txt
2222
RUN pip install --no-cache-dir -r ci-metrics/requirements.txt
2323

2424
RUN git config --global --add safe.directory /aztec-packages
25-
COPY dashboard/ .
26-
COPY ci-metrics/ ci-metrics/
25+
COPY . .
2726
EXPOSE 8080 8081
2827
CMD ["gunicorn", "-w", "50", "-b", "0.0.0.0:8080", "rk:app"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)