first commit

This commit is contained in:
장선애 2023-09-06 13:50:09 +09:00
parent 670000dc4b
commit 0998142c2c
2 changed files with 9 additions and 4 deletions

View File

@ -0,0 +1,3 @@
FROM bellsoft/liberica-openjre-alpine:17
ADD ./build/libs/control-center-management-*.jar control-center-management.jar
ENTRYPOINT [ "java", "-jar", "/control-center-management.jar" ]

View File

@ -16,10 +16,12 @@ repositories {
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
implementation("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat"
}
implementation("org.springframework.boot:spring-boot-starter-undertow")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb")
testImplementation ("org.springframework.boot:spring-boot-starter-test")
}
tasks.named('test') {