FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
awslambda-java-examples/simplelambda-http/Dockerfile at master · GoodforGod/awslambda-java-examples · GitHub
GoodforGod
/
awslambda-java-examples
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
4
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
awslambda-java-examples
/
simplelambda-http
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
14 lines (9 loc) · 356 Bytes
Breadcrumbs
awslambda-java-examples
/
simplelambda-http
/
Dockerfile
Copy path
File metadata and controls
14 lines (9 loc) · 356 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
FROM
goodforgod/amazonlinux-graalvm:22.3.0-java17-amd64
ADD
build/libs/*all.jar build/libs/application.jar
RUN
native-image --no-fallback -classpath build/libs/application.jar
ADD
bootstrap bootstrap
RUN
chmod +x bootstrap
RUN
chmod +x application
RUN
zip -j function.zip bootstrap application
EXPOSE
8080
ENTRYPOINT
[
"/home/application/application"
]
Back
|
FazBrowse Home
|
New Git URL