3 Commits
dev ... uat

2 changed files with 2 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ RUN apk add --no-cache dumb-init
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
ENV NODE_ENV=production HOSTNAME=0.0.0.0 PORT=3003
ENV NODE_ENV=production HOSTNAME=0.0.0.0
EXPOSE 3003
USER nextjs
ENTRYPOINT ["dumb-init", "--"]

View File

@@ -1,7 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ['@fiberops/shared'],
reactStrictMode: true,
output: 'standalone',
};
export default nextConfig;