12 lines
582 B
Bash
Executable File
12 lines
582 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes texlive-full' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes make' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes fonts-liberation fonts-liberation2' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes python3-setuptools python-setuptools python3-pygments python-pygments' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes rubber' >> Dockerfile
|
|
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|