Docker onbuild image for using Flybook
245
Flybook is a static site generator for documentation.
Requirements
When you build from this image, Flaybook will generate static files to /out.
Then you can use multi-stage build to create a lightweight image can publish outputs without build environments.
See an example:
FROM cometkim/flybook-onbuild:latest AS build-env
FROM nginx:latest
COPY --from=build-env /out /usr/share/nginx/html
Content type
Image
Digest
Size
263.4 MB
Last updated
about 9 years ago
docker pull cometkim/flybook-onbuild