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
|
.docker-build
|
||||||
|
.podman-build
|
||||||
|
|||||||
11
Dockerfile
11
Dockerfile
@@ -1,8 +1,5 @@
|
|||||||
FROM debian:latest
|
FROM pandoc/latex:latest
|
||||||
|
RUN tlmgr update --self \
|
||||||
RUN apt-get update
|
&& tlmgr install enumitem sectsty underscore
|
||||||
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
|
|
||||||
WORKDIR /data
|
WORKDIR /data
|
||||||
|
VOLUME ["/data"]
|
||||||
|
|||||||
7
Makefile
7
Makefile
@@ -13,14 +13,11 @@ ifneq ("$(shell podman images -q ${NAME} 2> /dev/null)","")
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
resume: .podman-build
|
resume: .podman-build
|
||||||
podman run -it \
|
podman run --rm \
|
||||||
--volume "$(realpath .)":/data \
|
--volume "$(realpath .)":/data \
|
||||||
--user ${USER_ID}:${GROUP_ID} \
|
|
||||||
--name ${CONTAINER_NAME} \
|
--name ${CONTAINER_NAME} \
|
||||||
${NAME} \
|
${NAME} \
|
||||||
pandoc ${FILE_NAME}.md -f markdown+yaml_metadata_block --template templates/jb2resume.latex -o ${FILE_NAME}.pdf \
|
${FILE_NAME}.md -f markdown+yaml_metadata_block --template templates/jb2resume.latex -o ${FILE_NAME}.pdf
|
||||||
; podman stop ${CONTAINER_NAME} \
|
|
||||||
&& podman rm ${CONTAINER_NAME}
|
|
||||||
|
|
||||||
.podman-build:
|
.podman-build:
|
||||||
if [ ${CONTAINER_EXISTS} -ne 1 ]; then podman build -t ${NAME} . && echo "" > .podman-build; fi
|
if [ ${CONTAINER_EXISTS} -ne 1 ]; then podman build -t ${NAME} . && echo "" > .podman-build; fi
|
||||||
|
|||||||
@@ -2,10 +2,13 @@
|
|||||||
name: Paul Halvorsen
|
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
|
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:
|
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'
|
- 'Phone: +1-410-236-4665'
|
||||||
- 'Citizen of the United States'
|
- 'Citizen of the United States'
|
||||||
right-column:
|
|
||||||
- 'Email: [pmghalvorsen@gmail.com](mailto:pmghalvorsen@gmail.com)'
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Summary
|
# 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"
|
- **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
|
- **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
|
- **Royal Military College (RMC Canada)**: Training in OpenBSD development and administration
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
|
|||||||
Binary file not shown.
@@ -25,7 +25,7 @@
|
|||||||
\hypersetup{
|
\hypersetup{
|
||||||
colorlinks = true,
|
colorlinks = true,
|
||||||
urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$,
|
urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$,
|
||||||
linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$,
|
linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$,
|
||||||
pdfauthor = {\name},
|
pdfauthor = {\name},
|
||||||
pdfkeywords = {$keywords$},
|
pdfkeywords = {$keywords$},
|
||||||
pdftitle = {\name: Curriculum Vitae},
|
pdftitle = {\name: Curriculum Vitae},
|
||||||
@@ -58,8 +58,7 @@ $if(section-color)$
|
|||||||
$else$
|
$else$
|
||||||
\sectionfont{\rmfamily\mdseries\Large}
|
\sectionfont{\rmfamily\mdseries\Large}
|
||||||
$endif$
|
$endif$
|
||||||
%\subsectionfont{\rmfamily\mdseries\itshape\large}
|
\subsectionfont{\rmfamily\mdseries\itshape\large}
|
||||||
\subsectionfont{\rmfamily\mdseries\large}
|
|
||||||
|
|
||||||
% Section numbers or not (default)
|
% Section numbers or not (default)
|
||||||
$if(numbersections)$
|
$if(numbersections)$
|
||||||
@@ -77,9 +76,6 @@ $endif$
|
|||||||
% Don't use monospace font for URLs
|
% Don't use monospace font for URLs
|
||||||
\urlstyle{same}
|
\urlstyle{same}
|
||||||
|
|
||||||
\renewcommand{\familydefault}{\sfdefault}
|
|
||||||
\usepackage{helvet}
|
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
% Place name at left
|
% Place name at left
|
||||||
|
|||||||
Reference in New Issue
Block a user