#!/bin/bash
if [[ "${1}" == "-f" ]] || [[ "${1}" == "--force" ]]; then
ARG="--no-cache"
else
ARG=""
fi
sudo docker build ${ARG} -t povray_wasm --rm .