As a DevOps Engineer, I want my CV to be like any other application: tested, built and deployed through a CI/CD pipeline.
In that way, when I update my pdf CV file, I can automatically deploy my new CV and make it available online.
My resume available here is running on a Kubernetes cluster in the cloud and this is the code repository of that application you can explore and use for you own CV.
My CV is bundled into a docker container anyone can pull and see on its computer.
$ docker pull slitibrahim/cv$ docker run -d --name cv slitibrahim/cv
$ docker cp cv:/cv/cv.pdf .$ docker run -p 80:80 slitibrahim/cvYou can now navigate to http://localhost:80 and see the CV.
$ docker run --rm --it slitibrahim/cv bash
$ brahim

