chad/client/Dockerfile
Никита Круглицкий e201aed526
All checks were successful
Deploy / deploy (push) Successful in 30s
#3 update
2025-10-01 23:56:13 +06:00

23 lines
348 B
Docker

FROM node:lts-alpine AS builder
WORKDIR /app
RUN corepack enable
RUN yarn set version stable
COPY package.json yarn.lock .yarnrc.yml ./
RUN yarn install
COPY . .
ENV COMMIT_SHA=$COMMIT_SHA
RUN yarn generate
FROM nginx:stable-alpine
COPY --from=builder /app/.output/public /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]