FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast-java-old/infra/docker/serving/Dockerfile.dev at master · feast-dev/feast-java-old · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast-java-old
Public
Notifications
You must be signed in to change notification settings
Fork
26
Star
12
Code
Issues
3
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
feast-java-old
/
infra
/
docker
/
serving
/
Dockerfile.dev
Copy path
More file actions
More file actions
Latest commit
History
History
History
15 lines (15 loc) · 600 Bytes
Breadcrumbs
feast-java-old
/
infra
/
docker
/
serving
/
Dockerfile.dev
Copy path
File metadata and controls
15 lines (15 loc) · 600 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
FROM openjdk:11-jre as production
ARG REVISION=dev
#
# Download grpc_health_probe to run health check for Feast Serving
# https://kubernetes.io/blog/2018/10/01/health-checking-grpc-servers-on-kubernetes/
#
RUN wget -q https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/v0.3.1/grpc_health_probe-linux-amd64 \
-O /usr/bin/grpc-health-probe && \
chmod +x /usr/bin/grpc-health-probe
ADD $PWD/serving/target/feast-serving-$REVISION-exec.jar /opt/feast/feast-serving.jar
CMD ["java",\
"-Xms1024m",\
"-Xmx1024m",\
"-jar",\
"/opt/feast/feast-serving.jar"]
Back
|
FazBrowse Home
|
New Git URL