From 863d1c13633bd569e61b6fb16140caf232c5eab4 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Mon, 15 Jun 2015 20:30:36 +0530 Subject: [PATCH] dockerfile: removed data comment on `RUN` command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 90f96c5..5ea8d6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN rm -rf /etc/apt/apt.conf.d/docker-gzip-indexes \ && wget "http://prdownloads.sourceforge.net/webadmin/webmin_${WEBMIN_VERSION}_all.deb" -P /tmp/ \ && dpkg -i /tmp/webmin_${WEBMIN_VERSION}_all.deb \ && rm -rf /tmp/webmin_${WEBMIN_VERSION}_all.deb \ - && rm -rf /var/lib/apt/lists/* # 20150613 + && rm -rf /var/lib/apt/lists/* COPY start /start RUN chmod 755 /start