This directory contains the code for the Apache ORC web site, orc.apache.org. The easiest way to build the site is to use docker to use a standard environment.
cd sitegit clone git@github.com:apache/orc.git -b asf-site targetdocker run -d --name orc-container -p 4000:4000 -v $PWD:/home/orc/site apache/orc-dev:siteLook at the site by navigating to http://0.0.0.0:4000/ .
You'll copy the files from the container to the site/target directory and commit those to the asf-site branch.
docker cp orc-container:/home/orc/site/target .cd targetdocker rm -f orc-container