Skip to content

Commit e5dd5e3

Browse files
committed
Removed apt-get clean phase.
It's automatically done on each apt transaction.
1 parent e886a37 commit e5dd5e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN echo "deb http://nginx.org/packages/mainline/debian/ wheezy nginx" >> /etc/a
77

88
ENV NGINX_VERSION 1.7.7-1~wheezy
99

10-
RUN apt-get update && apt-get install -y nginx=${NGINX_VERSION} && apt-get clean && rm -rf /var/lib/apt/lists/*
10+
RUN apt-get update && apt-get install -y nginx=${NGINX_VERSION} && rm -rf /var/lib/apt/lists/*
1111

1212
# forward request and error logs to docker log collector
1313
RUN ln -sf /dev/stdout /var/log/nginx/access.log

0 commit comments

Comments
 (0)