Files
titan_react_node_sqllite/Dockerfile
T
2026-06-10 16:10:18 +05:30

31 lines
632 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
# Expose port 80 for Nginx
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]