spring boot docker build

This commit is contained in:
kim
2021-02-06 18:02:46 +09:00
parent 8848048bdf
commit 68b01e2bc7
4 changed files with 3062 additions and 1853 deletions

View File

@@ -1,8 +1,8 @@
config:
target: "http://34.64.81.243"
phases:
- duration: 60
arrivalRate: 15
- duration: 360
arrivalRate: 1
name: Warm up
scenarios:

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,4 @@
FROM openjdk:8-jdk-alpine
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]