fix rm -rf path

This commit is contained in:
Julien Cabillot 2018-05-15 12:56:21 +00:00
parent 17d1a1127c
commit 9c19beb617

View File

@ -12,11 +12,11 @@ RUN apt-get update -qq && \
apt-get install --yes signal-desktop && \
apt-get -qq --yes autoremove --purge && \
apt-get -qq --yes clean all && \
rm -rf "/usr/share/doc/*" \
"/var/cache/*" \
"/var/lib/apt/lists/*" \
"/usr/src/*" \
rm -rf "/usr/share/doc/"* \
"/var/cache/"* \
"/var/lib/apt/lists/"* \
"/usr/src/"* \
"/var/log/"{apt/*,dpkg.log} \
"/tmp/*"
"/tmp/"*
CMD [ "signal-desktop" ]