Files
evo-sync/Dockerfile.web

11 lines
199 B
Docker
Raw Normal View History

FROM node:20-alpine
WORKDIR /app
COPY web/package*.json ./
RUN npm ci
COPY web/ .
RUN npm run build && cp -r src/templates dist/templates && cp -r static dist/static
CMD ["node", "dist/index.js"]