diff --git a/.vscode/settings.json b/.vscode/settings.json index 3736fac..fa86fda 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -19,10 +19,7 @@ "-lualatex", "-outdir=%OUTDIR%", "%DOC%" - ], - "env": { - "VERSION": "v1.0.4" - } + ] } ], "latex-workshop.latex.watch.files.ignore": [ diff --git a/Dockerfile b/Dockerfile index 28da26c..64b15fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,12 @@ ARG GID=$UID RUN groupadd --gid $GID $USERNAME \ && useradd --uid $UID --gid $GID -m $USERNAME +ARG TZ +ENV TZ="$TZ" +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + RUN apt-get update \ -&& apt-get install -y build-essential wget curl libfontconfig1 \ +&& apt-get install -y build-essential wget curl libfontconfig1 tzdata \ && rm -rf /var/lib/apt/lists/* ARG TEXLIVE_MIRROR=https://mirror.ctan.org/systems/texlive/tlnet diff --git a/src/latexmkrc b/src/latexmkrc new file mode 100644 index 0000000..7f1ac5e --- /dev/null +++ b/src/latexmkrc @@ -0,0 +1,2 @@ +$ENV{'TZ'}='America/New_York'; +$ENV{'VERSION'}='v1.0.5';