feat: Everest entrypoint + OCPI/EVerest config scripts

This commit is contained in:
Eric F
2026-06-15 18:38:14 -04:00
parent a70f5adf15
commit d0fbcd1e2d
3 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM node:24.16.0-alpine
WORKDIR /app
ENV NODE_ENV=production
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs
COPY --chown=nextjs:nodejs apps/operator-ui/.next/standalone ./
COPY --chown=nextjs:nodejs apps/operator-ui/.next/static ./apps/operator-ui/.next/static
COPY --chown=nextjs:nodejs 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"]