// Create Working Directory
$ mkdir work && cd work
// Create Tex File
$ vim sample.tex
// Start Live Compiling
$ docker run -v $(pwd):/root/work -it nontan18/texlive latexmk --pvc sample.tex
Add following line in Dockerfile.
RUN tlmgr install PACKAGE_NAME
and build Docker Image.
$ docker build -t texlive .