From 5555f18b68800fde7576088bf117f6d11243f3c6 Mon Sep 17 00:00:00 2001
From: Daya Adianto <dayaadianto@cs.ui.ac.id>
Date: Wed, 25 Oct 2023 19:10:41 +0700
Subject: [PATCH] Fix COPY instruction in Dockerfile

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index fbfaa878..14829599 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,7 +24,7 @@ USER app
 WORKDIR /opt/app
 
 # Copy the app into the container
-COPY --chown=app:app --from=builder /src/target/sitodo-*.jar .
+COPY --chown=app:app --from=builder /src/target/spring-petclinic-rest-*.jar .
 
 # Expose port 9966
 EXPOSE 9966
-- 
GitLab