Skip to content

Commit

Permalink
- Moved the linter to the gradle build so we have better control, and…
Browse files Browse the repository at this point in the history
… simplified usage.
  • Loading branch information
dcshock committed Jan 15, 2025
1 parent 1ec4aec commit a6b4b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 25 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/ktlint.yml

This file was deleted.

3 changes: 2 additions & 1 deletion docker/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:8-jdk21-graal AS build
FROM gradle:8-jdk21 AS build
RUN gradle --version && java -version
RUN ls -l
WORKDIR /app
Expand All @@ -11,6 +11,7 @@ COPY build.gradle.kts gradle.properties settings.gradle.kts buildSrc/build.gradl
RUN gradle clean build --no-daemon > /dev/null 2>&1 || true

# Copy all files
COPY .editorconfig /app/
COPY buildSrc /app/buildSrc/
COPY build.gradle.kts gradle.properties settings.gradle.kts /app/
COPY api-model /app/api-model/
Expand Down

0 comments on commit a6b4b7d

Please sign in to comment.