Skip to content

Commit

Permalink
Delete apt-get lists after install
Browse files Browse the repository at this point in the history
  • Loading branch information
hajduakos committed Aug 12, 2020
1 parent f5908f0 commit 9b305a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docker/theta-cfa-cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM openjdk:11.0.6-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends libgomp1
apt-get install -y --no-install-recommends libgomp1 && \
apt-get clean && rm -rf /var/lib/apt/lists/*

RUN mkdir theta
COPY . theta
Expand Down
3 changes: 2 additions & 1 deletion docker/theta-sts-cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM openjdk:11.0.6-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends libgomp1
apt-get install -y --no-install-recommends libgomp1 && \
apt-get clean && rm -rf /var/lib/apt/lists/*

RUN mkdir theta
COPY . theta
Expand Down
3 changes: 2 additions & 1 deletion docker/theta-xta-cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM openjdk:11.0.6-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends libgomp1
apt-get install -y --no-install-recommends libgomp1 && \
apt-get clean && rm -rf /var/lib/apt/lists/*

RUN mkdir theta
COPY . theta
Expand Down

0 comments on commit 9b305a2

Please sign in to comment.