Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Commit

Permalink
Add missing apt-get option "--no-install-recommends" in a few Dockerf…
Browse files Browse the repository at this point in the history
…iles
  • Loading branch information
flx42 committed Jan 11, 2017
1 parent 677434f commit d8f28b6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/7.0/devel/cudnn2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:7.0-devel
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/7.0/devel/cudnn3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:7.0-devel
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/7.0/runtime/cudnn2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:7.0-runtime
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/7.0/runtime/cudnn3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:7.0-runtime
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/7.5/devel/cudnn3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:7.5-devel
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/7.5/runtime/cudnn3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:7.5-runtime
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/8.0/devel/cudnn5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:8.0-devel
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-14.04/cuda/8.0/runtime/cudnn5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:8.0-runtime
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-16.04/cuda/8.0/devel/cudnn5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:8.0-devel
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down
2 changes: 1 addition & 1 deletion ubuntu-16.04/cuda/8.0/runtime/cudnn5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cuda:8.0-runtime
LABEL maintainer "NVIDIA CORPORATION <[email protected]>"

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

Expand Down

0 comments on commit d8f28b6

Please sign in to comment.