Skip to content

Commit 4b0abb3

Browse files
Dockerfile: clean apt-get
1 parent 374ad7a commit 4b0abb3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ RUN mkdir -p /code/runner
55

66
# Install base package.
77
RUN apt-get update && \
8-
apt-get install -y \
8+
apt-get install -y --no-install-recommends \
99
curl \
10-
ant
11-
10+
ant \
11+
&& apt-get clean \
12+
&& rm -rf /var/lib/apt/lists/*
13+
1214
# Download Processing.
1315
# Dev operation: copy processing into the image.
1416
# COPY processing-3.3.3-linux64.tgz /code/processing.tgz

0 commit comments

Comments
 (0)