We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f243e61 commit f9499cbCopy full SHA for f9499cb
repository-services/isajson-ena/Dockerfile
@@ -10,7 +10,14 @@ ARG GPR_TOKEN
10
11
# Build receipt first (dependency)
12
WORKDIR /app/receipt
13
-RUN sed -i 's/\r$//' gradlew && \
+RUN echo "Contents of /app/receipt:" && ls -la && \
14
+ if [ ! -f gradlew ]; then \
15
+ echo "ERROR: gradlew not found in /app/receipt"; \
16
+ echo "Contents of /app:" && ls -la /app; \
17
+ echo "Contents of /app/receipt:" && ls -la /app/receipt; \
18
+ exit 1; \
19
+ fi && \
20
+ sed -i 's/\r$//' gradlew && \
21
chmod +x gradlew && \
22
./gradlew build -x test -x spotlessApply -x spotlessJavaCheck --info --stacktrace && \
23
./gradlew publishToMavenLocal
0 commit comments