DALab CI/CD commited on
Commit
576352b
·
1 Parent(s): c4237eb

Update-da-policyengine-dev-20250618_062948

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -2
  2. README.md +1 -1
Dockerfile CHANGED
@@ -11,8 +11,8 @@ RUN apt-get update && apt-get install -y \
11
  # Copy application files
12
  COPY . .
13
 
14
- # Make gradlew executable and build application (if build.gradle.kts exists)
15
- RUN if [ -f "build.gradle.kts" ]; then \
16
  chmod +x ./gradlew && \
17
  ./gradlew build -x test; \
18
  fi
 
11
  # Copy application files
12
  COPY . .
13
 
14
+ # Make gradlew executable and build application (if build.gradle.kts or build.gradle exists)
15
+ RUN if [ -f "build.gradle.kts" ] || [ -f "build.gradle" ]; then \
16
  chmod +x ./gradlew && \
17
  ./gradlew build -x test; \
18
  fi
README.md CHANGED
@@ -35,4 +35,4 @@ Once deployed, API documentation will be available at:
35
 
36
  This service is automatically deployed via the DALab CI/CD pipeline.
37
 
38
- Last updated: 2025-06-17 23:05:48
 
35
 
36
  This service is automatically deployed via the DALab CI/CD pipeline.
37
 
38
+ Last updated: 2025-06-18 06:29:46