Skip to content
Merged
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Create directories
RUN mkdir -p /app /data /var/log/supervisor

# Copy binaries and static files
# Copy binaries and static files. The frontend keeps production exports in a
# separate dist dir so `next build` doesn't clobber a live dev server's `.next`
# artifacts.
COPY --from=backend /app/target/release/cxdb-server /app/cxdb
COPY --from=frontend /app/out /usr/share/nginx/html
COPY --from=frontend /app/.next-build/. /usr/share/nginx/html/

# Copy nginx config
COPY deploy/nginx.conf /etc/nginx/nginx.conf
Expand Down
2 changes: 2 additions & 0 deletions frontend/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@
--theme-tag-dotrunner-bg: rgba(37, 99, 235, 0.2);
--theme-tag-claude-code: #c084fc;
--theme-tag-claude-code-bg: rgba(147, 51, 234, 0.2);
--theme-tag-codex: #22c55e;
--theme-tag-codex-bg: rgba(34, 197, 94, 0.2);
--theme-tag-gen: #34d399;
--theme-tag-gen-bg: rgba(16, 185, 129, 0.2);
--theme-tag-test: #fbbf24;
Expand Down
Loading
Loading