This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repositories: | |
- name: datawire | |
url: https://www.getambassador.io | |
- name: seldon | |
url: https://storage.googleapis.com/seldon-charts | |
releases: | |
- name: ambassador | |
namespace: ambassador | |
createNamespace: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
tfserve: | |
image: tensorflow/serving | |
ports: | |
- 8501:8501 | |
environment: | |
MODEL_NAME: dog_model | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.8 | |
RUN apt-get update && DEBIAN_FRONTEND=noninteractive && apt-get install -y \ | |
curl \ | |
python3-setuptools && \ | |
apt-get clean && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* | |
RUN mkdir /models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.8 | |
EXPOSE 8502 | |
WORKDIR /app | |
ARG CONFIG | |
ENV CONFIG ${CONFIG} | |
ARG ENV |
NewerOlder