Fix install of plugins in Dockerfile

This commit is contained in:
Stefan Müller 2024-01-02 13:52:25 +01:00 committed by SamTV12345
parent fe9d6ec178
commit 8f608591e8

View file

@ -91,7 +91,7 @@ WORKDIR "${EP_DIR}"
COPY --chown=etherpad:etherpad ./ ./ COPY --chown=etherpad:etherpad ./ ./
RUN { [ -z "${ETHERPAD_PLUGINS}" ] || /bin/bash -c 'ARR_PLUGINS=($ETHERPAD_PLUGINS) && jq -n "{plugins: \$ARGS.positional}" --args ${ARR_PLUGINS[@]} > var/installed_plugins.json'; } && \ RUN { [ -z "${ETHERPAD_PLUGINS}" ] || /bin/bash -c 'ARR_PLUGINS=($ETHERPAD_PLUGINS) && jq -n "{plugins: \$ARGS.positional}" --args ${ARR_PLUGINS[@]}'; } > var/installed_plugins.json && \
src/bin/installDeps.sh && src/bin/installDeps.sh &&
# Copy the configuration file. # Copy the configuration file.