File size: 421 Bytes
7572a96 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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;"]
|