Dockerfile 268 B

1234567891011
  1. FROM arm32v7/nextcloud:13.0.2
  2. LABEL Description="Official nextcloud arm32v7 image for rpi with cron configured."
  3. COPY ./entrypoint.sh /
  4. RUN apt-get update && apt-get install -y --no-install-recommends cron
  5. ENTRYPOINT ["/entrypoint.sh"]
  6. CMD ["apache2-foreground"]