Skip to content

Instantly share code, notes, and snippets.

@inkychris
Created October 17, 2018 11:07
Show Gist options
  • Save inkychris/533331a321a3c4f661b64aeb96bf8e9b to your computer and use it in GitHub Desktop.
Save inkychris/533331a321a3c4f661b64aeb96bf8e9b to your computer and use it in GitHub Desktop.
Minimal TeX Docker Image
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y \
wget \
perl \
libfontconfig
RUN wget "https://yihui.name/gh/tinytex/tools/install-unx.sh"
RUN chmod +x install-unx.sh
RUN ./install-unx.sh
ENV PATH="/root/bin:${PATH}"
RUN tlmgr install \
adjustbox \
collectbox \
fancyhdr \
multirow \
psnfss \
sectsty \
siunitx \
textcase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment