mirror of
https://github.com/alexgo-io/stacks-subnets.git
synced 2026-01-12 22:43:44 +08:00
11 lines
216 B
Docker
11 lines
216 B
Docker
FROM node:lts-alpine as build
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
|
|
|
RUN npx redoc-cli@0.10.3 bundle -o /build/open-api-docs.html ./docs/rpc/openapi.yaml
|
|
|
|
FROM scratch AS export-stage
|
|
COPY --from=build /build/open-api-docs.html /
|