2022-08-02 16:29:39 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
|
2022-08-03 10:06:30 +02:00
|
|
|
echo 'RUN apt update && apt dist-upgrade && apt clean all' >> Dockerfile
|
|
|
|
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
|
2022-08-02 16:29:39 +02:00
|
|
|
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|
|
|
|
|