nextcloud-docker/Dockerfile
andreas 6610cb21f3
All checks were successful
continuous-integration/drone/push Build is passing
update dockerfile to nextcloud 25.0
2022-12-15 20:06:06 +00:00

17 lines
405 B
Docker

arg NC_TAG=25.0-apache
from docker.io/nextcloud:$NC_TAG
run apt-get update && apt-get install -y \
sudo cron samba-client unrar-free p7zip p7zip-full \
libmagickcore-6.q16-6-extra \
supervisor \
&& rm -rf /var/lib/apt/lists \
&& mkdir /var/log/supervisord /var/run/supervisord
copy supervisord.conf /
env NEXTCLOUD_UPDATE=1
cmd ["/usr/bin/supervisord", "-c", "/supervisord.conf"]