Spaces:
Runtime error
Runtime error
| # Dockerfile | |
| # Use an official Node.js runtime as the base image | |
| FROM node:22.1.0 | |
| USER root | |
| RUN apt-get update | |
| USER 1000 | |
| WORKDIR /usr/src/app | |
| # Copy package.json and package-lock.json to the container | |
| COPY --chown=1000 package.json package-lock.json ./ | |
| # Copy the rest of the application files to the container | |
| COPY --chown=1000 . . | |
| RUN npm install | |
| RUN npm run build | |
| # --- LOS CAMBIOS ESTÁN AQUÍ ABAJO --- | |
| # Forzar el puerto que exige Hugging Face | |
| ENV PORT=7860 | |
| EXPOSE 7860 | |
| # Start the application | |
| CMD ["npm", "start"] |