Dynavera/compose/dev/node/Dockerfile

15 lines
239 B
Text
Raw Normal View History

FROM node:22-bullseye
WORKDIR /app
COPY site/package*.json ./
RUN npm ci && npm cache clean --force
COPY site/src ./src
COPY site/index.html .
COPY site/vite.config.* .
COPY site/tsconfig.* .
EXPOSE 5173
CMD ["npm", "run", "devwatch"]