Updating the make file to use podman and resume headers
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
.docker-build
|
||||
.podman-build
|
||||
|
||||
11
Dockerfile
11
Dockerfile
@@ -1,8 +1,5 @@
|
||||
FROM debian:latest
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y texlive-base texlive-bibtex-extra texlive-fonts-recommended texlive-fonts-extra texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-science pandoc
|
||||
|
||||
RUN mkdir /data
|
||||
FROM pandoc/latex:latest
|
||||
RUN tlmgr update --self \
|
||||
&& tlmgr install enumitem sectsty underscore
|
||||
WORKDIR /data
|
||||
|
||||
VOLUME ["/data"]
|
||||
|
||||
7
Makefile
7
Makefile
@@ -13,14 +13,11 @@ ifneq ("$(shell podman images -q ${NAME} 2> /dev/null)","")
|
||||
endif
|
||||
|
||||
resume: .podman-build
|
||||
podman run -it \
|
||||
podman run --rm \
|
||||
--volume "$(realpath .)":/data \
|
||||
--user ${USER_ID}:${GROUP_ID} \
|
||||
--name ${CONTAINER_NAME} \
|
||||
${NAME} \
|
||||
pandoc ${FILE_NAME}.md -f markdown+yaml_metadata_block --template templates/jb2resume.latex -o ${FILE_NAME}.pdf \
|
||||
; podman stop ${CONTAINER_NAME} \
|
||||
&& podman rm ${CONTAINER_NAME}
|
||||
${FILE_NAME}.md -f markdown+yaml_metadata_block --template templates/jb2resume.latex -o ${FILE_NAME}.pdf
|
||||
|
||||
.podman-build:
|
||||
if [ ${CONTAINER_EXISTS} -ne 1 ]; then podman build -t ${NAME} . && echo "" > .podman-build; fi
|
||||
|
||||
@@ -2,10 +2,13 @@
|
||||
name: Paul Halvorsen
|
||||
keywords: rust, cargo, python, c, docker, containers, tdd, test driven development, pytest, ci/cd, javascript, jquery, php, mysql, rest, api, json, xml, git, gitlab, nginx, remote, testing
|
||||
left-column:
|
||||
- 'Sr Software Developer'
|
||||
- 'Email: [paul_halvorsen@halvo.me](mailto:paul_halvorsen@halvo.me)'
|
||||
- 'Last Updated: \today'
|
||||
right-column:
|
||||
- 'Personal Blog: [https://flow.halvo.me](https://flow.halvo.me)'
|
||||
- 'Phone: +1-410-236-4665'
|
||||
- 'Citizen of the United States'
|
||||
right-column:
|
||||
- 'Email: [pmghalvorsen@gmail.com](mailto:pmghalvorsen@gmail.com)'
|
||||
---
|
||||
|
||||
# Summary
|
||||
@@ -86,7 +89,7 @@ I'm a Software Engineer with over 13 years development and 17 years professional
|
||||
|
||||
- **University of Maryland Baltimore Campus**: Masters in Computer Science; 2013. Thesis: "Stateless Detection of Malicious Traffic: Emphasis on User Privacy"
|
||||
- **Salisbury University**: Bachelors in Computer Science; 2009. Magna Cum-Laude
|
||||
- **Security+**: ID: COMP001021281239; Exp Date: 04/04/2024
|
||||
- **Security+** (Expired): ID: COMP001021281239; Exp Date: 04/04/2024
|
||||
- **Royal Military College (RMC Canada)**: Training in OpenBSD development and administration
|
||||
|
||||
# Miscellaneous
|
||||
|
||||
Binary file not shown.
@@ -25,7 +25,7 @@
|
||||
\hypersetup{
|
||||
colorlinks = true,
|
||||
urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$,
|
||||
linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$,
|
||||
linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$,
|
||||
pdfauthor = {\name},
|
||||
pdfkeywords = {$keywords$},
|
||||
pdftitle = {\name: Curriculum Vitae},
|
||||
@@ -58,8 +58,7 @@ $if(section-color)$
|
||||
$else$
|
||||
\sectionfont{\rmfamily\mdseries\Large}
|
||||
$endif$
|
||||
%\subsectionfont{\rmfamily\mdseries\itshape\large}
|
||||
\subsectionfont{\rmfamily\mdseries\large}
|
||||
\subsectionfont{\rmfamily\mdseries\itshape\large}
|
||||
|
||||
% Section numbers or not (default)
|
||||
$if(numbersections)$
|
||||
@@ -77,9 +76,6 @@ $endif$
|
||||
% Don't use monospace font for URLs
|
||||
\urlstyle{same}
|
||||
|
||||
\renewcommand{\familydefault}{\sfdefault}
|
||||
\usepackage{helvet}
|
||||
|
||||
\begin{document}
|
||||
|
||||
% Place name at left
|
||||
|
||||
Reference in New Issue
Block a user