Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tex to pdf convert #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.5-alpine

RUN apk add --no-cache nmap nmap-scripts git
RUN apk add --no-cache nmap nmap-scripts git texlive-full

RUN pip install --no-cache-dir xmltodict google-cloud-storage boto3

Expand Down
8 changes: 8 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fi

xml_dir=xml_files/$current_time
report_file=reports/report_$current_time.tex
report_file_pdf=reports/report_$current_time.pdf

function upload {
if [[ -z $upload ]]
Expand Down Expand Up @@ -44,4 +45,11 @@ sed -i 's/_/\\_/g' $root_dir$report_file
sed -i 's/\$/\\\$/g' $root_dir$report_file
sed -i 's/#/\\#/g' $root_dir$report_file
sed -i 's/%/\\%/g' $root_dir$report_file
latexmk -pdf -outdir=$root_dir/reports $root_dir$report_file #make pdf
popdir=`pwd` #pushd
cd $root_dir/reports
latexmk -c -f $root_dir$report_file #cleanup tex aux files
cd $popdir #popd
upload $report_file
upload $report_file_pdf