Files
titan_react_node_sqllite/Dockerfile
T
2026-07-30 12:49:29 +05:30

33 lines
706 B
Docker

# Base image
FROM node:20-alpine AS base
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install
# Development stage
FROM base AS development
# Copy all project files
COPY . .
# Expose Vite's default port
EXPOSE 3000
# Run the development server
CMD ["npm", "run", "dev"]
# Build stage
FROM base AS build
COPY . .
RUN npm run build
# Production stage
FROM nginx:alpine AS production
# Copy built assets from the build stage to Nginx
COPY --from=build /app/dist /usr/share/nginx/html
# Copy custom nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80 for Nginx
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]