Skip to content

Commit dd4ec9d

Browse files
committed
Fix
1 parent 3abe5af commit dd4ec9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ ENV PATH=/opt/gradle/gradle-7.4.2/bin:$PATH
1313
WORKDIR /app
1414
COPY . /app
1515

16-
# Ensure gradlew is executable
17-
RUN chmod +x ./gradlew
16+
# Ensure gradlew is present and executable
17+
RUN ls -l ./gradlew && chmod +x ./gradlew
1818

1919
# Build Kotlin app
2020
RUN ./gradlew build

0 commit comments

Comments
 (0)