Dynavera/compose/dev/node/Dockerfile

15 lines
214 B
Text
Raw Normal View History

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