-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62e65f0
commit da1195e
Showing
1 changed file
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
FROM debian:stable-slim | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN echo "deb http://deb.debian.org/debian stable main" > /etc/apt/sources.list && \ | ||
echo "deb http://deb.debian.org/debian stable-updates main" >> /etc/apt/sources.list && \ | ||
echo "deb http://deb.debian.org/debian-security stable-security main" >> /etc/apt/sources.list && \ | ||
apt-get update && \ | ||
apt-get install -qyf \ | ||
texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended && \ | ||
rm -rf /var/lib/apt/lists/* | ||
RUN echo "deb http://deb.debian.org/debian stable main" > /etc/apt/sources.list \ | ||
&& echo "deb http://deb.debian.org/debian stable-updates main" >> /etc/apt/sources.list \ | ||
&& echo "deb http://deb.debian.org/debian-security stable-security main" >> /etc/apt/sources.list \ | ||
&& apt-get update \ | ||
&& apt-get install -qy \ | ||
texlive-latex-recommended \ | ||
texlive-latex-extra \ | ||
texlive-fonts-recommended \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /data | ||
VOLUME ["/data"] |