Code for CNCF OpenGitOps project website.
👩💻 Local Development.
# if you like npm
npm i
npm start
# Or if you like yarn
yarn install
yarn start
Docker setup
# Build container image from local filesystem with default Node version
docker build --no-cache -t website:<tag> -f Containerfile .
# Build container image from local filesystem with Node version as build arg
docker build --build-arg NODE_VERSION=19 --no-cache -t website:<tag> -f Containerfile .
# Run container image with mapping port 80 on your computer
docker run -dit -p 8000:8000 website:<tag>