FROM node:20-alpine AS build WORKDIR /app ARG VITE_API_URL=https://jayvatliq-car-view-classifier.hf.space ENV VITE_API_URL=$VITE_API_URL COPY package.json package-lock.json ./ RUN npm ci COPY . . RUN npm run build FROM nginx:alpine COPY --from=build /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 7860 CMD ["nginx", "-g", "daemon off;"]