-
-
Save sozercan/0ba9f0e456d28a84870a0a7a6dae47fd to your computer and use it in GitHub Desktop.
Tensorflow Serving Docker
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 ubuntu:16.04 | |
RUN apt-get update && apt-get install software-properties-common python-software-properties -y && \ | |
add-apt-repository ppa:ubuntu-toolchain-r/test -y && \ | |
apt-get update && \ | |
apt-get install -y curl libcurl3-dev unzip wget libstdc++6 && \ | |
apt-get clean | |
RUN echo "deb [arch=amd64] http://storage.googleapis.com/tensorflow-serving-apt stable tensorflow-model-server tensorflow-model-server-universal" | tee /etc/apt/sources.list.d/tensorflow-serving.list && \ | |
curl https://storage.googleapis.com/tensorflow-serving-apt/tensorflow-serving.release.pub.gpg | apt-key add - && \ | |
apt-get update && apt-get install tensorflow-model-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment