christian
efb88af7ca
All checks were successful
ci/woodpecker/push/nextcloud/2 Pipeline was successful
ci/woodpecker/push/nextcloud/1 Pipeline was successful
ci/woodpecker/cron/keycloak Pipeline was successful
ci/woodpecker/cron/nextcloud/2 Pipeline was successful
ci/woodpecker/cron/nextcloud/1 Pipeline was successful
13 lines
315 B
Docker
13 lines
315 B
Docker
ARG TAG=latest
|
|
FROM docker.io/library/nextcloud:${TAG}
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y supervisor \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& mkdir -p /var/log/supervisord /var/run/supervisord
|
|
|
|
ADD supervisord.conf /
|
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"] |