Some checks failed
Build Keycloak / Build Keycloak Image (push) Successful in 2m15s
Build Keycloak / Build Keycloak Image-2 (push) Successful in 2m14s
Build Keycloak / Build Keycloak Image-1 (push) Successful in 2m17s
Build Penpot / Build Image penpot-backend:2.1.2 (push) Failing after 3m44s
Build Penpot / Build Image penpot-exporter:2.1.2 (push) Failing after 3m42s
Build Penpot / Build Image penpot-frontend:2.1.2 (push) Failing after 40s
Build Nextcloud / Build Nextcloud 33 Image (push) Failing after 7m11s
Build Nextcloud / Build Nextcloud 34 Image (push) Failing after 7m5s
16 lines
470 B
Docker
16 lines
470 B
Docker
ARG TAG
|
|
FROM git.hamburg.ccc.de/ccchh/oci-images/nextcloud-base:${TAG}
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y supervisor \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& mkdir -p /var/log/supervisord /var/run/supervisord
|
|
|
|
# We need to copy a file to the supervisord folder in /var/run so it exists when the container starts.
|
|
COPY .keep /var/run/supervisord/
|
|
|
|
COPY supervisord.conf /
|
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]
|