FROM nikolaik/python-nodejs:python3.10-nodejs17 as builder WORKDIR /workspace COPY package.json package.json COPY yarn.lock yarn.lock RUN yarn install COPY . /workspace RUN NODE_OPTIONS="--openssl-legacy-provider --max-old-space-size=4096" yarn docusaurus build FROM nginx:1.21 WORKDIR / COPY --from=builder /workspace/build /usr/share/nginx/html