diff --git a/Dockerfile b/Dockerfile index 0f3f14ac0f2e39e9666da1db96d44583505246fa..2f50343b22efa334d4da51441ce1a657d1cc09e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,9 @@ ARG GOOGLE_INTEGRATION_VERSION="1.0.9" ARG DASHBOARD_JOB_ID="582062" ARG SNAPPY_VERSION="2.27.2" ARG SNAPPY_THEME_VERSION="2.0.0" +ARG USER_MIGRATION_JOB_ID="608716" -RUN sed -i 's/25,0,6,1/25,0,6,4/' ${BASE_DIR}/version.php +RUN sed -i 's/25,0,6,1/25,0,6,5/' ${BASE_DIR}/version.php COPY custom_entrypoint.sh / RUN chmod +x /custom_entrypoint.sh RUN mkdir -p /var/www/skeleton/Documents && mkdir -p /var/www/skeleton/Images @@ -80,6 +81,12 @@ RUN curl -fsSL -o snappymail.tar.gz \ tar -xf snappymail.tar.gz -C ${BASE_DIR}/custom_apps/ && \ rm snappymail.tar.gz; +RUN curl -fsSL -o user_migration.zip \ + "https://gitlab.e.foundation/e/infra/ecloud/nextcloud-apps/user_migration/-/jobs/${USER_MIGRATION_JOB_ID}/artifacts/download" && \ + unzip user_migration.zip && \ + mv dist/user_migration ${BASE_DIR}/custom_apps/ && \ + rm user_migration.zip; + # Fix snappymail icon RUN sed -i 's/logo-white-64x64.png/app.svg/' ${BASE_DIR}/custom_apps/snappymail/appinfo/info.xml diff --git a/README.md b/README.md index db2482bfc4c2628d6633870978b7a5f1ccc5c7f0..3e43770e0702e9c53d1656c37ad2d8ac627111f6 100644 --- a/README.md +++ b/README.md @@ -60,4 +60,4 @@ We suggest you use our [ecloud-selfhosting](https://gitlab.e.foundation/e/infra/ ## Contributing -Anyone can fork a project on our GitLab instance, but to prevent abuse it's disabled by default. Get in touch with us [by e-mail](mailto:join@e.email) or through our support channels and we will let you create a fork and submit MRs. +Anyone can fork a project on our GitLab instance, but to prevent abuse it's disabled by default. Get in touch with us [by e-mail](mailto:dev@murena.com) or through our support channels and we will let you create a fork and submit MRs.