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

Update-da-policyengine-dev-20250617_230552

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -1
  2. README.md +1 -1
Dockerfile CHANGED
@@ -11,8 +11,9 @@ RUN apt-get update && apt-get install -y \
11
  # Copy application files
12
  COPY . .
13
 
14
- # Build application (if build.gradle.kts exists)
15
  RUN if [ -f "build.gradle.kts" ]; then \
 
16
  ./gradlew build -x test; \
17
  fi
18
 
 
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
19
 
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 22:58:19
 
35
 
36
  This service is automatically deployed via the DALab CI/CD pipeline.
37
 
38
+ Last updated: 2025-06-17 23:05:48