CoolFace
Apppublic

DataScope26/WEB

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM node:22-bullseye-slim AS builder2 3WORKDIR /app4 5COPY package*.json ./6 7RUN npm ci8 9COPY . .10 11RUN npm run build12 13FROM nginx:stable-alpine14 15EXPOSE 786016 17COPY --from=builder /app/dist /usr/share/nginx/html18 19COPY nginx.conf /etc/nginx/conf.d/default.conf20