feat: initialize Intellecton portal repository under GitOps Covenant

This commit is contained in:
Antigravity Agent
2026-05-23 14:20:22 +00:00
commit 2c09e491f8
28 changed files with 185865 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
FROM node:20-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
ENV PORT=3000
ENV HOSTNAME="0.0.0.0"
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
# Set the correct permission for prerender cache
RUN mkdir .next
RUN chown nextjs:nodejs .next
# Copy the standalone build files from the host
COPY --chown=nextjs:nodejs public ./public
COPY --chown=nextjs:nodejs .next/standalone ./
COPY --chown=nextjs:nodejs .next/static ./.next/static
USER nextjs
EXPOSE 3000
CMD ["node", "server.js"]