Skip to content

Commit 16c6475

Browse files
committed
fix(docker): copy gradle-plugins and skip dependencyCheck in image build
1 parent 39a1779 commit 16c6475

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ COPY frontend ./frontend
2424
COPY ktor-flagent ./ktor-flagent
2525
COPY sdk ./sdk
2626
COPY samples ./samples
27+
COPY gradle-plugins ./gradle-plugins
2728
COPY VERSION ./
2829

2930
# Limit Gradle heap in Docker so multi-platform build does not OOM (runner has ~7GB)
@@ -33,7 +34,7 @@ ENV GRADLE_OPTS="-Xmx2048m -XX:MaxMetaspaceSize=512m"
3334
WORKDIR /app
3435
RUN chmod +x ./gradlew
3536

36-
RUN ./gradlew :backend:installDist --no-daemon --stacktrace
37+
RUN ./gradlew :backend:installDist --no-daemon --stacktrace -x dependencyCheck
3738

3839
RUN ./gradlew :frontend:jsBrowserDevelopmentWebpack --no-daemon
3940

0 commit comments

Comments
 (0)