spring boot docker build
This commit is contained in:
@@ -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
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