From 6f2a4a3f1246779f5a8b34401dd634fb0db482b2 Mon Sep 17 00:00:00 2001 From: GREENRAT-K405 Date: Sat, 14 Feb 2026 23:18:36 +0530 Subject: [PATCH] fix hardcoded java dockerfile, use wildcard in source path of copy --- Dockerfile.java => Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Dockerfile.java => Dockerfile (87%) diff --git a/Dockerfile.java b/Dockerfile similarity index 87% rename from Dockerfile.java rename to Dockerfile index 1b32be00..324d0b40 100644 --- a/Dockerfile.java +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app # Only copy the JAR if it exists -COPY ./target/concore-0.0.1-SNAPSHOT.jar /app/concore.jar +COPY ./target/concore-*.jar /app/concore.jar # Ensure the JAR file is executable if present RUN [ -f /app/concore.jar ] && chmod +x /app/concore.jar || true