Skip to content

Commit

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

RUN apt-get update && \
apt-get install -y libgomp1
apt-get install -y --no-install-recommends libgomp1

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

RUN apt-get update && \
apt-get install -y libgomp1
apt-get install -y --no-install-recommends libgomp1

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

RUN apt-get update && \
apt-get install -y libgomp1
apt-get install -y --no-install-recommends libgomp1

RUN mkdir theta
COPY . theta
Expand Down

0 comments on commit f5908f0

Please sign in to comment.