修改 docker build 错误
diff --git a/build.gradle b/build.gradle
index 068eb80..3c9b881 100644
--- a/build.gradle
+++ b/build.gradle
@@ -30,12 +30,18 @@
     }
 }
 
+jar {
+    baseName = "door"
+}
+
 docker {
     name '172.28.201.70:5000/dali/door:' + version
     println(jar.archivePath)
     files jar.archivePath
 }
 
+docker.dependsOn(jar)
+
 dependencies {
     implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
     implementation 'org.springframework.boot:spring-boot-starter-data-redis'