# Build Stage FROM node:20-alpine AS build WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . # Add ARGs for build time environment variables ARG VITE_SUPABASE_URL ARG VITE_SUPABASE_ANON_KEY # Ensure they are available during build ENV VITE_SUPABASE_URL=$VITE_SUPABASE_URL ENV VITE_SUPABASE_ANON_KEY=$VITE_SUPABASE_ANON_KEY RUN npm run build # Production Stage FROM nginx:alpine # Copy built assets from build stage COPY --from=build /app/dist /usr/share/nginx/html # Copy custom nginx config COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]