You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to build the Nuxt application with ant-design the following error appears: ERROR EMFILE: too many open files, open '/app/.output/server/node_modules/@ant-design/icons-svg/lib/asn/ChromeFilled.js'
This is my Dockerfile
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM node:20-alpine AS runner
WORKDIR /app
COPY --from=builder /app/.output /app/.output
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]
The text was updated successfully, but these errors were encountered:
When trying to build the Nuxt application with ant-design the following error appears:
ERROR EMFILE: too many open files, open '/app/.output/server/node_modules/@ant-design/icons-svg/lib/asn/ChromeFilled.js'
This is my Dockerfile
The text was updated successfully, but these errors were encountered: