$ docker build \
--build-arg GID=$(id -g) \
--build-arg USER_NAME=${USER} \
--build-arg UID=$(id -u) \
--tag pt/python-opencv-hello-world:latest .
$ docker run \
-it \
--volume ${PWD}:${PWD} \
--workdir ${PWD} \
--name opencv-hello-world \
pt/python-opencv-hello-world:latest \
zsh
$ pip3 install -r requirements.txt
$ su ${CURRENT_LOCAL_USER} -c '{SOME_CMDS}'