|
|
|
@ -1,10 +1,18 @@
|
|
|
|
|
FROM nextcloud:19.0.0RC3-apache
|
|
|
|
|
FROM nextcloud:19.0.1-apache
|
|
|
|
|
|
|
|
|
|
# This is for cron
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
|
supervisor \
|
|
|
|
|
supervisor wget gnupg \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This is for facial recognition app
|
|
|
|
|
#RUN echo "deb https://repo.delellis.com.ar stretch stretch" > /etc/apt/sources.list.d/20-pdlib.list \
|
|
|
|
|
# && wget -qO - https://repo.delellis.com.ar/repo.gpg.key | apt-key add - \
|
|
|
|
|
# && apt update \
|
|
|
|
|
# && apt install -y libdlib-dev bzip2
|
|
|
|
|
|
|
|
|
|
COPY ./config/supervisord.conf /
|
|
|
|
|
|
|
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
|