mirror of
https://github.com/temetro/temetro.git
synced 2026-07-26 11:58:14 +00:00
403e0e38e9
Resolve the backend URL from the current host at runtime (lib/backend-url.ts) so one build works on localhost and any clinic LAN IP without a rebuild; used by the API client, auth client, and socket. Wire the AI-chat mic to the Web Speech API with graceful fallback. Add a Settings "About & updates" panel (current/latest version, update command, shareable network address) and an optional dismissible update banner. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 lines
1.4 KiB
Docker
37 lines
1.4 KiB
Docker
# --- deps ------------------------------------------------------------------
|
|
FROM node:22-alpine AS deps
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
# Retry on transient registry drops (ECONNRESET / "network aborted") and allow a
|
|
# long timeout — the dependency set is large, so a slow connection can stall.
|
|
RUN npm ci --no-audit --no-fund \
|
|
--fetch-retries=5 \
|
|
--fetch-retry-mintimeout=20000 \
|
|
--fetch-retry-maxtimeout=180000 \
|
|
--fetch-timeout=900000
|
|
|
|
# --- build (Next.js standalone output) -------------------------------------
|
|
FROM node:22-alpine AS build
|
|
WORKDIR /app
|
|
# NEXT_PUBLIC_* values are inlined at build time. We deliberately leave the API
|
|
# URL EMPTY by default: the app derives the backend URL from the browser host at
|
|
# runtime (see lib/backend-url.ts), so one prebuilt image works on localhost and
|
|
# any clinic LAN IP. Set NEXT_PUBLIC_API_URL only to pin a fixed/proxied URL.
|
|
ARG NEXT_PUBLIC_API_URL=
|
|
ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# --- runtime ---------------------------------------------------------------
|
|
FROM node:22-alpine AS runtime
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
ENV HOSTNAME=0.0.0.0
|
|
COPY --from=build /app/public ./public
|
|
COPY --from=build /app/.next/standalone ./
|
|
COPY --from=build /app/.next/static ./.next/static
|
|
EXPOSE 3000
|
|
CMD ["node", "server.js"]
|