Clean up tmp files left behind by npm.

This commit is contained in:
Pagan Gazzard 2015-05-07 16:27:27 +01:00 committed by Pablo Carranza Vélez
parent 52d4cfb9d9
commit 2387402c35
5 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,4 @@
* Clean up tmp files left behind by npm [Page]
* Fix an error where mixpanel events would have the wrong uuid set on first provision. [Page]
* Update knexjs to ~0.8.3, which uses lodash 3 and means it will be deduplicated (reducing image size and runtime memory usage) [Page]
* Stop caching config.json, avoids a race that could cause getting stuck repeatedly trying to register [Page]

View File

@ -19,6 +19,7 @@ RUN apt-get -q update \
&& npm install --unsafe-perm --production \
&& npm dedupe \
&& npm cache clean \
&& rm -rf /tmp/* \
&& apt-get purge -qqy g++ libsqlite3-dev make binutils \
&& apt-get clean \
&& apt-get autoremove -qqy \

View File

@ -19,6 +19,7 @@ RUN apt-get -q update \
&& npm install --unsafe-perm --production \
&& npm dedupe \
&& npm cache clean \
&& rm -rf /tmp/* \
&& apt-get purge -qqy g++ libsqlite3-dev make binutils \
&& apt-get clean \
&& apt-get autoremove -qqy \

View File

@ -19,6 +19,7 @@ RUN apt-get -q update \
&& npm install --unsafe-perm --production \
&& npm dedupe \
&& npm cache clean \
&& rm -rf /tmp/* \
&& apt-get purge -qqy g++ libsqlite3-dev make binutils \
&& apt-get clean \
&& apt-get autoremove -qqy \

View File

@ -19,6 +19,7 @@ RUN apt-get -q update \
&& npm install --unsafe-perm --production \
&& npm dedupe \
&& npm cache clean \
&& rm -rf /tmp/* \
&& apt-get purge -qqy g++ libsqlite3-dev make binutils \
&& apt-get clean \
&& apt-get autoremove -qqy \