2020-08-12 15:51:48 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
|
|
|
|
echo 'RUN apt-get update && apt-get install --yes --no-install-recommends texlive-full' >> Dockerfile
|
2020-08-13 12:19:58 +02:00
|
|
|
echo 'RUN apt-get update && apt-get install --yes --no-install-recommends make' >> Dockerfile
|
2020-08-12 15:51:48 +02:00
|
|
|
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|