spring boot docker build
This commit is contained in:
@@ -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
4
class101/cpu-bound-application-master/Dockerfile
Normal file
4
class101/cpu-bound-application-master/Dockerfile
Normal 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"]
|
||||||
Reference in New Issue
Block a user