you can check Shambo_Chowdhury_Resume.pdf which is the latest build of my resume
This project allows me to build my resume in PDF and PNG formats using LaTeX inside a Docker container. This ensures a consistent environment for building my resume, regardless of the host operating system.
- Docker installed on your system.
Dockerfile
: Contains the instructions to create the Docker image.resume.tex
: my LaTeX resume source file.
Follow these steps to build and run the Docker image to generate resume.
If you haven't already, clone this repository to your local machine:
git clone https://github.com/yourusername/latex-resume-docker.git
cd latex-resume-docker
Build the Docker image with the following command:
docker build -t latex-resume .
This process can take some time, especially the first time, as it needs to download and install all the required packages.
Run the following command to compile your resume.tex
file to a PDF:
docker run --rm -v $(pwd):/data latex-resume pdflatex resume.tex
docker run --rm -v $(pwd):/data latex-resume convert -density 300 resume.pdf -quality 90 resume.png
This command uses ImageMagick's convert tool to generate a high-quality PNG from the PDF.