From 9fb575e6d9dab7b07ecfccdae11edb08991be6a3 Mon Sep 17 00:00:00 2001 From: Aleksandr Chikovani Date: Tue, 29 Aug 2023 00:35:38 -0400 Subject: [PATCH] various fixes... --- .github/workflows/gradle-build.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index c96245458..70a3bee8f 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 checkstyleMain -x checkstyleAot + run: ./gradlew build -x test -x processTestAot -x checkstyleMain -x checkstyleAot docker_build: runs-on: ubuntu-latest diff --git a/Dockerfile b/Dockerfile index 1b5e98ef3..0dd0c8496 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG VERSION undefined ENV VERSION=$VERSION WORKDIR /app COPY . . -RUN ./gradlew build -x test -x checkstyleAot -x checkstyleMain -Pversion=$VERSION +RUN ./gradlew build -x test -x processTestAot -x checkstyleAot -x checkstyleMain -Pversion=$VERSION FROM eclipse-temurin@sha256:e90e0d654765ab3ae33f5c5155daafa4a907d0d738ce98c3be8f402a8edcee2b ENV PORT 8080