mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-03 01:54:01 -05:00
17 lines
293 B
Docker
17 lines
293 B
Docker
FROM node:24
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
RUN yarn install
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Expose Vite dev server port
|
|
EXPOSE 5173
|
|
|
|
# Run development server with host flag to make it accessible from outside container
|
|
CMD ["yarn", "dev", "--", "--host", "0.0.0.0"]
|