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: config:
target: "http://34.64.81.243" target: "http://34.64.81.243"
phases: phases:
- duration: 60 - duration: 360
arrivalRate: 15 arrivalRate: 1
name: Warm up name: Warm up
scenarios: 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"]