Newer
Older
ARG DEPENDENCY_PROXY=
FROM ${DEPENDENCY_PROXY}node:18.17-slim AS builder
# Copy the package.json file first in order to cache the modules
COPY ./package.json .
COPY ./yarn.lock .
# Copy the project
COPY tsconfig.json .
COPY sidebars.ts .
COPY docusaurus.config.ts .
COPY /src ./src
COPY /docs ./docs
COPY /static ./static
FROM nginxinc/nginx-unprivileged:1.25
COPY --from=builder /app/build /usr/share/nginx/html