Skip to content

Commit

Permalink
feat:Dockerfile add
Browse files Browse the repository at this point in the history
  • Loading branch information
eojinny committed Dec 5, 2023
1 parent d4a7850 commit 0470543
Show file tree
Hide file tree
Showing 38 changed files with 17 additions and 1 deletion.
Binary file modified .gradle/8.5/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified .gradle/8.5/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/8.5/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/8.5/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/8.5/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM openjdk:17
COPY ./build/libs/samsung-0.0.1-SNAPSHOT.jar samsung.jar
ENTRYPOINT ["java", "-jar", "samsung.jar"]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/libs/samsung-0.0.1-SNAPSHOT.jar
Binary file not shown.
1 change: 1 addition & 0 deletions build/resolvedMainClassName
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.samsung.samsung.SamsungApplication
12 changes: 12 additions & 0 deletions build/tmp/bootJar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Manifest-Version: 1.0
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.samsung.samsung.SamsungApplication
Spring-Boot-Version: 3.1.7-SNAPSHOT
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx
Spring-Boot-Layers-Index: BOOT-INF/layers.idx
Build-Jdk-Spec: 17
Implementation-Title: samsung
Implementation-Version: 0.0.1-SNAPSHOT

Binary file modified build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public BaseResponse<List<ProductDto.Response>> getProductList(){
}
@GetMapping("/list/{type}")
public BaseResponse<List<ProductDto.Response>> getProductLikeList(@PathVariable("type") String type){
List<ProductDto.Response> productList = productService.findByAll();
List<ProductDto.Response> productList = productService.findByType(type);
return BaseResponse.onSuccess(productList);
}
}

0 comments on commit 0470543

Please sign in to comment.