-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
33 lines (25 loc) · 930 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM aalbaali/latex:dev
# This is the same Dockerfile used in aalbaali/latex-action
RUN DEBIAN_FRONTEND=noninteractive
RUN sudo sudo apt-get update -y \
&& sudo apt-get install -y \
zathura \
okular \
mupdf \
xdotool
RUN DEBIAN_FRONTEND=
# Install the custom classes
RUN mkdir -p /tmp/custom_latex \
&& cd /tmp/custom_latex \
&& echo $(ls .) && echo "$PWD" \
&& wget -c https://raw.githubusercontent.com/aalbaali/latex_classes/master/install.sh?token=GHSAT0AAAAAABRI2OOT3SC4C7IOHDIQJ5K4YQRPABA -O install_tex.sh \
&& chmod +x install_tex.sh \
&& ./install_tex.sh
# Install/update latest packages and install zplug (through zsh-setup)
RUN cd ~/Dev/workstation_setup \
&& git pull \
&& ./scripts/install_packages.sh \
&& ./scripts/post_install_setup.sh --nvim-setup
ENV TZ="Canada/Eastern"
RUN date
CMD ["zsh"]