Spaces:
Running
Running
| FROM node:18-slim | |
| # Create app directory | |
| WORKDIR /app | |
| # Install app dependencies | |
| COPY package*.json ./ | |
| RUN npm install | |
| # Bundle app source | |
| COPY . . | |
| # Hugging Face Spaces exposes port 7860 | |
| ENV PORT=7860 | |
| EXPOSE 7860 | |
| # Run the server | |
| CMD [ "node", "server.js" ] | |