mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2024-11-22 05:58:33 +00:00
Create dockerized build
This commit is contained in:
parent
0ad94fe74e
commit
7bec0cb391
2 changed files with 17 additions and 0 deletions
14
README.md
14
README.md
|
@ -42,6 +42,20 @@ You can see [PDF](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/e
|
|||
|
||||
## <a name="how-to-use">How to Use
|
||||
|
||||
### Using Docker Container
|
||||
|
||||
#### Usage
|
||||
|
||||
Just execute the following line in the root directory of this repository. Voila!
|
||||
|
||||
```bash
|
||||
$ generate_cv_with_docker.sh
|
||||
```
|
||||
|
||||
The resulting cv.pdf can be found in /examples.
|
||||
|
||||
### Using local TeX installation
|
||||
|
||||
#### Requirements
|
||||
|
||||
A full TeX distribution is assumed. [Various distributions for different operating systems (Windows, Mac, \*nix) are available](http://tex.stackexchange.com/q/55437) but TeX Live is recommended.
|
||||
|
|
3
generate_cv_with_docker.sh
Executable file
3
generate_cv_with_docker.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker run --rm -w "/data/examples" -v "$PWD":/data blang/latex xelatex cv.tex
|
Loading…
Reference in a new issue