1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

rsnapshot as non root

This commit is contained in:
Robin Appelman 2024-04-26 14:45:05 +02:00
commit b393e134dc

View file

@ -30,7 +30,10 @@ RUN DEBIAN_FRONTEND=noninteractive ;\
curl -L https://github.com/harness/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar zx && \ curl -L https://github.com/harness/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar zx && \
install -t /usr/bin drone && \ install -t /usr/bin drone && \
wget https://github.com/vimeo/psalm/releases/latest/download/psalm.phar -O /usr/local/bin/psalm && \ wget https://github.com/vimeo/psalm/releases/latest/download/psalm.phar -O /usr/local/bin/psalm && \
chmod +x /usr/local/bin/psalm chmod +x /usr/local/bin/psalm && \
touch /var/log/rsnapshot.log && \
chmod 0777 /var/log/rsnapshot.log && \
chmod 0777 /var/cache/rsnapshot
ADD misc/collaboraonline.sources /etc/apt/sources.list.d ADD misc/collaboraonline.sources /etc/apt/sources.list.d
RUN DEBIAN_FRONTEND=noninteractive ;\ RUN DEBIAN_FRONTEND=noninteractive ;\