Skip to content

Commit 193eaec

Browse files
ludamadclaude
andcommitted
fix: move ci-metrics under dashboard and fix Dockerfile paths
Move ci3/ci-metrics into ci3/dashboard/ci-metrics so both apps live together. This simplifies deploy.sh (single rsync), the Dockerfile (COPY . . just works), and the local dashboard build in source_redis (no more temp staging directory). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d6ee42b commit 193eaec

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)