Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit a23ea270 authored by Nivesh Krishna's avatar Nivesh Krishna
Browse files

add user migration app

parent 4c45507a
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -81,11 +81,11 @@ 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.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" && \
    tar -xf user_migration.tar.gz -C ${BASE_DIR}/custom_apps/ && \
    unzip user_migration.zip -C ${BASE_DIR}/custom_apps/ && \
    chown -R www-data:www-data ${BASE_DIR}/custom_apps/user_migration && \
    rm user_migration.tar.gz;
    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