Skip to content

Commit 62e65f0

Browse files
remove unnecessary Dockerfile packages and re-format
1 parent 2929381 commit 62e65f0

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Dockerfile

+5-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ ENV DEBIAN_FRONTEND noninteractive
33

44
RUN echo "deb http://deb.debian.org/debian stable main" > /etc/apt/sources.list && \
55
echo "deb http://deb.debian.org/debian stable-updates main" >> /etc/apt/sources.list && \
6-
echo "deb http://deb.debian.org/debian-security stable-security main" >> /etc/apt/sources.list
7-
RUN apt-get update
8-
RUN apt-get install -qyf \
9-
curl jq make git \
10-
python3-pygments gnuplot \
11-
texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
12-
RUN rm -rf /var/lib/apt/lists/*
6+
echo "deb http://deb.debian.org/debian-security stable-security main" >> /etc/apt/sources.list && \
7+
apt-get update && \
8+
apt-get install -qyf \
9+
texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended && \
10+
rm -rf /var/lib/apt/lists/*
1311

1412
WORKDIR /data
1513
VOLUME ["/data"]

0 commit comments

Comments
 (0)