Files
flowsint/flowsint-app/Dockerfile.dev
2025-10-24 11:42:58 +02:00

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"]