mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-08 23:04:17 -05:00
18 lines
273 B
Docker
18 lines
273 B
Docker
FROM node:24-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add --no-cache python3 make g++
|
|
|
|
# Copy dependency files
|
|
COPY package.json yarn.lock ./
|
|
|
|
RUN yarn install --network-timeout 100000
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 5173
|
|
|
|
# Vite dev server with hot-reload
|
|
CMD ["yarn", "dev", "--host", "0.0.0.0"]
|