fusero-app-boilerplate/frontend/Dockerfile.dev
2025-05-15 18:08:34 +02:00

18 lines
294 B
Docker

FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application
COPY . .
# Expose port 8080
EXPOSE 8080
# Start development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "8080"]