Spaces:
Running
Running
| FROM node:20-alpine | |
| WORKDIR /app | |
| COPY package.json ./ | |
| RUN npm install --only=production | |
| COPY server.js ./ | |
| COPY profanity-words.js ./ | |
| COPY multilingual-profanity.js ./ | |
| COPY profanity-data ./profanity-data/ | |
| COPY translation.js ./ | |
| COPY index.html ./ | |
| EXPOSE 7860 | |
| CMD ["npm", "start"] | |