You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN if [ ! -f $CORAX_JAVA_ARTIFACT_ZIP ]; then curl -SLO "https://github.com/Feysh-Group/corax-community/releases/download/v$CORAX_VERSION/$CORAX_JAVA_ARTIFACT_ZIP"; else echo "file already exists!"; fi
RUN jar xf $CORAX_JAVA_ARTIFACT_ZIP
# [兼容异常处理] 第一次 build 必失败,|| true 使其永真
RUN ./gradlew build || true
RUN sed -i "s#^coraxEnginePath=.*#coraxEnginePath=/corax-community/$CORAX_JAVA_ARTIFACT_NAME/$CORAX_JAVA_CLI_NAME#g" gradle-local.properties && \