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 site
git clone https://gitbox.apache.org/repos/asf/orc.git -b asf-site target
docker build -t orc-site .
docker run -d -p 4000:4000 orc-site
Look 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.
- Find the name of the container using
docker ps
. docker cp $CONTAINER:/home/orc/site/target .
cd target
- Commit the files and push to Apache.
docker stop $CONTAINER