We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f59e3 commit 768f16aCopy full SHA for 768f16a
1 file changed
Dockerfile
@@ -38,6 +38,10 @@ RUN set -e \
38
# Copy the built jar file to the runtime stage
39
COPY --from=builder --chown=root:gcontainer --chmod=750 /build/target/file_checker*.jar app.jar
40
# Copy the specs :
41
+# Debug: afficher le contenu du contexte de build
42
+RUN echo "=== Listing build context ===" && ls -la / || true
43
+RUN echo "=== Current directory ===" && pwd && ls -la . || true
44
+RUN echo "=== Looking for file_checker_spec ===" && find / -name "file_checker_spec" -type d 2>/dev/null || true
45
COPY file_checker_spec /app/file_checker_spec
46
# Specify the default command for running the app
47
ENTRYPOINT ["java", "-jar", "/app/app.jar"]
0 commit comments