11 lines
460 B
Bash
Executable File
11 lines
460 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 make' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes texlive-full python3-setuptools python-setuptools python3-pygments python-pygments fonts-liberation fonts-liberation2 rubber' >> Dockerfile
|
|
echo 'RUN apt-get update && apt-get install --yes pandoc' >> Dockerfile
|
|
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|
|
|