fix build.yml (x8)

This commit is contained in:
dalbodeule
2024-06-13 22:35:30 +09:00
parent d717b297f3
commit 0481681dd4
3 changed files with 8 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
# Builder Stage
FROM gradle:jdk-21-and-22-graal AS builder
FROM ghcr.io/graalvm/graalvm-ce:22.3.3 AS builder
# Set working directory
WORKDIR /app
@@ -18,6 +18,7 @@ RUN ./gradlew --no-daemon dependencies
COPY src ./src
# Build the application
RUN ./gradlew build
RUN ./gradlew nativeCompile
# Runner Stage