diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index d006fdc74..b36abdd1b 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -40,7 +40,7 @@ jobs: - name: Test run: ./gradlew test - name: Build - run: ./gradlew build -x test -x processTestAot -x checkstyleMain -x checkstyleTest -x checkstyleAot + run: ./gradlew build -x test -x processTestAot -x checkstyleMain -x checkstyleTest -x checkstyleAot -x checkstyleAotTest docker_build: runs-on: ubuntu-latest diff --git a/Dockerfile b/Dockerfile index c50f67d1a..7075d1fb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG VERSION undefined ENV VERSION=$VERSION WORKDIR /app COPY . . -RUN ./gradlew build -x test -x processTestAot -x checkstyleTest -x checkstyleAot -x checkstyleMain -Pversion=$VERSION +RUN ./gradlew build -x test -x processTestAot -x checkstyleTest -x checkstyleAot -x checkstyleAotTest -x checkstyleMain -Pversion=$VERSION FROM eclipse-temurin@sha256:e90e0d654765ab3ae33f5c5155daafa4a907d0d738ce98c3be8f402a8edcee2b ENV PORT 8080