dockerfile: removed data comment on `RUN` command

pull/11/head
Sameer Naik 2015-06-15 20:30:36 +05:30
parent 023bf0e5ef
commit 863d1c1363
1 changed files with 1 additions and 1 deletions

View File

@ -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