Docker: Keep /var/lib/apt/ to keep apt working (#10830)

This commit is contained in:
Sandro Jäckel 2019-05-25 23:20:28 +02:00 committed by Eugen Rochko
parent 0852e643b7
commit c90f3b9865
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ RUN apt -y --no-install-recommends install \
ln -s /opt/mastodon /mastodon && \
gem install bundler && \
rm -rf /var/cache && \
rm -rf /var/lib/apt
rm -rf /var/lib/apt/lists/*
# Add tini
ENV TINI_VERSION="0.18.0"