Switch to Greenfossil Thorium 0.10.10 on Scala 3.7.1

- Update group ID from io.github.nicoburniske to com.greenfossil
- Downgrade thoriumVersion to 0.10.10
- Expand assemblyMergeStrategy for Armeria/Netty service files and module-info.class
- Fix Dockerfile COPY path to scala-3.7.1

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
davidtio
2026-02-28 13:42:01 +08:00
parent 2a7c3151eb
commit 68ce73bb55
2 changed files with 25 additions and 8 deletions

View File

@@ -29,8 +29,8 @@ FROM eclipse-temurin:25-jre-alpine
RUN addgroup -S app && adduser -S app -G app
WORKDIR /app
# Adjust path for Scala 3.8.2
COPY --from=build --chown=app:app /app/target/scala-3.8.2/demoapp.jar ./demoapp.jar
# Adjust path for Scala 3.7.1
COPY --from=build --chown=app:app /app/target/scala-3.7.1/demoapp.jar ./demoapp.jar
USER app
EXPOSE 8080