etherpad: save some space

This commit is contained in:
Starbeamrainbowlabs 2020-09-27 20:23:05 +01:00
parent ec8ccd6439
commit 00dcd7603e
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,10 @@ ENV PYTHON /usr/bin/python3
RUN cd /srv/etherpad \
&& ln -s /usr/bin/python3 /usr/bin/python \
&& npm install \
&& npm install sqlite3
&& npm install sqlite3 \
&& rm -rf /srv/etherpad/.git
# The rm -rf there is to save some space in the resulting container
###############################################################################