Transition telemetry dashboard integration from an external URL approach to a local reverse proxy via Nginx. This simplifies client-side connectivity by routing all telemetry requests through the existing web server's domain. - Configure Nginx to proxy `/telemetry/` sub-paths to the internal telemetry service - Implement `sub_filter` in Nginx to rewrite root-relative paths for the SPA - Remove `VITE_TELEMETRY_URL` build arguments and environment variable dependencies - Simplify `TelemetryPage` to use a relative `/telemetry` base path - Clean up deployment workflows and Dockerfile by removing unused telemetry build args
22 lines
695 B
Docker
22 lines
695 B
Docker
FROM oven/bun:1.3.14 AS builder
|
|
WORKDIR /app
|
|
|
|
COPY package.json bun.lock bunfig.toml tsconfig.base.json ./
|
|
COPY packages/shared/package.json packages/shared/package.json
|
|
COPY apps/web/package.json apps/web/package.json
|
|
COPY apps/api/package.json apps/api/package.json
|
|
RUN bun install --frozen-lockfile
|
|
|
|
COPY packages/shared packages/shared
|
|
COPY apps/web apps/web
|
|
ARG VITE_API_BASE_URL
|
|
ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
|
|
RUN bun run --cwd packages/shared build
|
|
RUN bun run --cwd apps/web build
|
|
|
|
FROM nginx:1.27-alpine AS runner
|
|
COPY apps/web/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=builder /app/apps/web/dist /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|