DALab CI/CD commited on
Commit
38ba5b6
·
1 Parent(s): 138f3b2

Update-da-admin-service-dev-20250618_062936

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:38
 
35
 
36
  This service is automatically deployed via the DALab CI/CD pipeline.
37
 
38
+ Last updated: 2025-06-18 06:29:34