FROM node:20-slim AS build WORKDIR /app RUN apt-get update && apt-get install -y git git-lfs && git lfs install && apt-get clean COPY package*.json ./ RUN npm install COPY . . ENV ASG_BASE=/ RUN npm run build FROM nginx:alpine RUN mkdir -p /var/cache/nginx /tmp && chmod -R 777 /var/cache/nginx /tmp COPY nginx.conf /etc/nginx/nginx.conf COPY --from=build /app/dist /app/dist EXPOSE 7860 CMD ["nginx","-g","daemon off;"]