CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
Dockerfile.nodejs19 linesDownload Raw Back to api
1FROM node:18-slim2 3WORKDIR /app4 5# Copy package files6COPY package*.json ./7 8# Install dependencies9RUN npm install --production10 11# Copy application files12COPY api/app.js ./api/13COPY api/queues/ ./api/queues/14COPY models/ ./models/15COPY frontend/dist ./frontend/dist16 17EXPOSE 786018 19CMD ["node", "api/app.js"]