Add rsync to image for easy deployment option
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Olivier <tanuki@tanukitsu.net>
This commit is contained in:
Olivier 'reivilibre' 2021-01-10 08:33:45 +00:00
parent 273cd32135
commit ca7d91ebc7

View File

@ -2,7 +2,7 @@ FROM rust:1.49.0-slim
# install needed APT packages, then clear out the cache to reduce image size bloat # install needed APT packages, then clear out the cache to reduce image size bloat
RUN apt-get -qq update && \ RUN apt-get -qq update && \
apt-get -yqq install pkg-config nodejs npm git && \ apt-get -yqq install pkg-config nodejs npm git rsync && \
rm -r /var/cache/apt rm -r /var/cache/apt
# install zola from source, then remove (heavy) cargo temporaries to reduce bloat # install zola from source, then remove (heavy) cargo temporaries to reduce bloat