Skip to content
Dockerfile 1.29 KiB
Newer Older
Pierre Ozoux's avatar
Pierre Ozoux committed
ARG VERSION
FROM alpine as apps
RUN apk add --no-cache jq curl bash
COPY apps /apps
WORKDIR /apps
ARG VERSION
RUN ./install.sh
RUN rm ./install.sh ./install-list

FROM nextcloud:${VERSION}-fpm-alpine
Pierre Ozoux's avatar
Pierre Ozoux committed
COPY redis.ini /usr/local/etc/php/conf.d/
Pierre Ozoux's avatar
Pierre Ozoux committed
COPY opcache-recommended.ini /usr/local/etc/php/conf.d/opcache.ini
COPY php-fpm.conf /usr/local/etc/php-fpm.conf
COPY --chown=www-data:root config/* /usr/src/nextcloud/config/
COPY --from=apps --chown=www-data:root /apps/* /usr/src/nextcloud/apps/
Pierre Ozoux's avatar
Pierre Ozoux committed
COPY --chown=www-data:root ./apps/indie_external /usr/src/nextcloud/apps/indie_external
Pierre Ozoux's avatar
Pierre Ozoux committed
WORKDIR /usr/src/nextcloud
Pierre Ozoux's avatar
Pierre Ozoux committed
COPY ./img/logo /usr/src/nextcloud/core/img/logo
COPY ./img/favicon.ico /usr/src/nextcloud/core/img/favicon.ico
COPY ./css/indie.scss /usr/src/nextcloud/core/css/indie.scss
Pierre Ozoux's avatar
Pierre Ozoux committed
COPY install.sh /install.sh
RUN for app in $(cat /usr/src/nextcloud/apps/remove-list);do \
Pierre Ozoux's avatar
Pierre Ozoux committed
      echo "removing app $app"; \
      rm -R /usr/src/nextcloud/apps/$app; \
Pierre Ozoux's avatar
Pierre Ozoux committed
    done; \
Pierre Ozoux's avatar
Pierre Ozoux committed
    touch ./data/.ocdata; \
Pierre Ozoux's avatar
Pierre Ozoux committed
    echo @import \'indie.scss\'\; >> /usr/src/nextcloud/core/css/server.scss; \
Pierre Ozoux's avatar
Pierre Ozoux committed
    chown -R www-data:root /usr/src/nextcloud; \
    rm /usr/src/nextcloud/apps/remove-list; \
Pierre Ozoux's avatar
Pierre Ozoux committed
    rm -rf custom_apps/; \
    rm /usr/src/nextcloud/config/autoconfig.php /usr/src/nextcloud/config/config.sample.php;
Pierre Ozoux's avatar
Pierre Ozoux committed
USER www-data
Timothee Gosselin's avatar
Timothee Gosselin committed
ENTRYPOINT [""]
CMD [""]