Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# ============================================================================
# Stage 2: Build Java JNI bindings
# ============================================================================
FROM eclipse-temurin:17-jdk AS java-builder
FROM eclipse-temurin:25-jdk AS java-builder

ENV DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -152,7 +152,7 @@
# ============================================================================
# Stage 3: Runtime (for testing)
# ============================================================================
FROM eclipse-temurin:17-jdk AS runtime
FROM eclipse-temurin:25-jdk AS runtime

ENV DEBIAN_FRONTEND=noninteractive

Expand All @@ -178,7 +178,7 @@
COPY --from=java-builder /test.sh /app/

# Set library path
ENV LD_LIBRARY_PATH=/usr/local/lib:/app/build:$LD_LIBRARY_PATH

Check warning on line 181 in docker/Dockerfile.java

View workflow job for this annotation

GitHub Actions / Test Java Bindings

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Export volume for built artifacts
VOLUME ["/artifacts"]
Expand Down
Loading