CoolFace
Apppublic

agentN0/usmle-exam-system

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile25 linesDownload Raw Back to root
1FROM node:18-slim2 3WORKDIR /app4 5# Copy package files6COPY package.json ./7 8# Install dependencies9RUN npm install10 11# Copy source code12COPY . .13 14# Build the app15RUN npm run build16 17# Expose port18EXPOSE 786019 20# Install and use serve to run the built app21RUN npm install -g serve22 23# Serve the built app24CMD ["serve", "-s", "dist", "-l", "7860"]25