mirror of
https://github.com/reconurge/flowsint.git
synced 2026-04-29 02:39:41 -05:00
14 lines
154 B
Docker
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"]
|