- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
41 lines
1.0 KiB
Docker
41 lines
1.0 KiB
Docker
# SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Build context is the monorepo root.
|
|
|
|
FROM --platform=${BUILDPLATFORM:-linux/amd64} node:24.16.0 AS builder
|
|
|
|
RUN corepack enable
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pnpm install --frozen-lockfile
|
|
RUN pnpm --filter "@citrineos/operator-ui..." build
|
|
|
|
FROM node:24.16.0-alpine AS runner
|
|
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
RUN addgroup --system --gid 1001 nodejs \
|
|
&& adduser --system --uid 1001 nextjs
|
|
|
|
# Next.js standalone output is rooted at outputFileTracingRoot (monorepo root),
|
|
# so server.js lives at apps/operator-ui/server.js within the standalone tree.
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/operator-ui/.next/standalone ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/operator-ui/.next/static ./apps/operator-ui/.next/static
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/operator-ui/public ./apps/operator-ui/public
|
|
|
|
USER nextjs
|
|
|
|
EXPOSE 3000
|
|
|
|
ENV PORT=3000
|
|
ENV HOSTNAME="0.0.0.0"
|
|
|
|
CMD ["node", "apps/operator-ui/server.js"]
|