Try adding an explicit /tmp dir creation to work around an aufs bug

This commit is contained in:
John Locke 2015-09-21 09:09:17 -07:00
parent ba69402221
commit d2faf23967

View File

@ -66,6 +66,10 @@ RUN chown www-data /etc/ssmtp /etc/ssmtp/ssmtp.conf && \
chmod +x /usr/bin/update_ssmtp.sh /usr/bin/start.sh && \
mkdir -p /var/www
# Work around an aufs bug related to directory permissions:
RUN mkdir -p /tmp && \
chmod 1777 /tmp
# Internal Port Expose
EXPOSE 5000
#USER www-data