Container build
Dockerfile (console)
# Build the dispatch console.
node:22-alpine
AS build
WORKDIR
/src
COPY
package.json ./
RUN
npm install
COPY
. .
RUN
npm run build
# Serve the static bundle.
nginx:1.27-alpine
AS console
COPY
--from=build /src/dist /usr/share/nginx/html
EXPOSE
80