CoolFace
Apppublic

Risksray/anxiety-attack-detection-support-platform

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
Dockerfile25 linesDownload Raw Back to root
1```dockerfile2# Use official Node.js image3FROM node:18-alpine4 5# Set working directory6WORKDIR /app7 8# Copy package files9COPY package*.json ./10 11# Install dependencies12RUN npm install13 14# Copy source files15COPY . .16 17# Build the application18RUN npm run build19 20# Expose the Next.js port21EXPOSE 300022 23# Start the application24CMD ["npm", "start"]25```