Files
flowsint/flowsint-app/Dockerfile
2025-10-27 11:24:58 +01:00

14 lines
154 B
Docker

FROM node:24
WORKDIR /app
COPY package*.json ./
RUN yarn install
COPY . .
RUN yarn build
EXPOSE 5173
CMD ["yarn", "preview", "--", "--port", "5173"]