Tamarin/hooks/containerbuild/latex-compiler/add-packages

13 lines
587 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
2022-08-08 14:11:01 +02:00
echo 'RUN apt update && apt dist-upgrade --yes && apt clean all' >> Dockerfile
2022-08-03 10:06:30 +02:00
echo 'RUN apt update && apt install --yes make' >> Dockerfile
2022-08-03 10:09:57 +02:00
echo 'RUN apt update && apt install --yes python3-setuptools python3-pygments fonts-liberation fonts-liberation2 && apt clean all' >> Dockerfile
2022-08-03 10:06:30 +02:00
echo 'RUN apt update && apt install --yes texlive-full rubber && apt clean all' >> Dockerfile
2022-08-03 12:06:09 +02:00
echo 'RUN apt update && apt install --yes curl && apt clean all' >> Dockerfile
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile