FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/java/infra/docker/feature-server/Dockerfile.dev at swapyaml · feast-dev/feast · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
218
Pull requests
191
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
java
/
infra
/
docker
/
feature-server
/
Dockerfile.dev
Copy path
More file actions
More file actions
Latest commit
History
History
History
15 lines (15 loc) · 622 Bytes
Breadcrumbs
feast
/
java
/
infra
/
docker
/
feature-server
/
Dockerfile.dev
Copy path
File metadata and controls
15 lines (15 loc) · 622 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/java/serving/target/feast-serving-$REVISION-jar-with-dependencies.jar /opt/feast/feast-serving.jar
CMD ["java",\
"-Xms1024m",\
"-Xmx1024m",\
"-jar",\
"/opt/feast/feast-serving.jar"]
Back
|
FazBrowse Home
|
New Git URL