removed /var/lib/apt/lists to optimization image size

pull/2/head
Sameer Naik 2014-08-19 11:55:44 +05:30
parent ad3d74d80b
commit ee9a793407
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ RUN rm -rf /etc/apt/apt.conf.d/docker-gzip-indexes && \
apt-show-versions python && \
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 && \
apt-get clean # 20140625
apt-get clean && rm -rf /var/lib/apt/lists/* # 20140818
ADD start /start
RUN chmod 755 /start