35 lines
951 B
Docker
35 lines
951 B
Docker
# Stage 1: Build the Vite application
|
|
FROM node:20-alpine as build
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package.json and package-lock.json (if present) to leverage Docker cache
|
|
COPY package.json yarn.lock* package-lock.json* ./
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
# Copy the rest of the application code
|
|
COPY . .
|
|
|
|
# Build the Vite application for production
|
|
# You might need to adjust 'npm run build' if your build script is different
|
|
RUN npm run build
|
|
|
|
# Stage 2: Serve the built application with Nginx
|
|
FROM nginx:alpine
|
|
|
|
# Copy the built Vite application from the build stage to Nginx's web root
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
|
|
# Remove the default Nginx configuration file
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy a custom Nginx configuration file (see example below)
|
|
COPY nginx.conf /etc/nginx/conf.d/nginx.conf
|
|
|
|
# Expose port 80 for web traffic
|
|
EXPOSE 80
|
|
|
|
# Start Nginx when the container launches
|
|
CMD ["nginx", "-g", "daemon off;"] |