Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERROR EMFILE: too many open files, open '<FILE>' #61

Open
lamartinezt-indra opened this issue Sep 13, 2024 · 0 comments
Open

ERROR EMFILE: too many open files, open '<FILE>' #61

lamartinezt-indra opened this issue Sep 13, 2024 · 0 comments

Comments

@lamartinezt-indra
Copy link

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"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant