FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
boot-app/Dockerfile at master · springboot-angular2-tutorial/boot-app · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
springboot-angular2-tutorial
/
boot-app
Public
Notifications
You must be signed in to change notification settings
Fork
41
Star
114
Code
Issues
2
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
boot-app
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (14 loc) · 457 Bytes
Breadcrumbs
boot-app
/
Dockerfile
Copy path
File metadata and controls
21 lines (14 loc) · 457 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM
java:alpine
ARG
JASYPT_ENCRYPTOR_PASSWORD=
VOLUME
/tmp
WORKDIR
/app
COPY
build/libs/springboot-angular2-tutorial-0.0.1.jar app.jar
COPY
docker/newrelic.jar .
COPY
docker/newrelic.yml .
ENV
JASYPT_ENCRYPTOR_PASSWORD=$JASYPT_ENCRYPTOR_PASSWORD
ENV
JAVA_OPTS=
"-javaagent:newrelic.jar"
ENTRYPOINT
[
"sh"
,
"-c"
,
"java $JAVA_OPTS \
-Djava.security.egd=file:/dev/./urandom \
-Dnewrelic.environment=$SPRING_PROFILES_ACTIVE \
-jar app.jar"
]
EXPOSE
8080
Back
|
FazBrowse Home
|
New Git URL