Skip to content

Commit

Permalink
Updated GPU wrapper to uninstall TF without GPU (#1011)
Browse files Browse the repository at this point in the history
* Updated GPU wrapper to uninstall TF without GPU

* Updated GPU wrapper

* Updated Python-GPU Wrapper
  • Loading branch information
JoelH96 authored and axsaucedo committed Nov 6, 2019
1 parent 620988a commit 9805bb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion wrappers/s2i/python-gpu/python-gpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ WORKDIR /microservice
COPY ./s2i/bin/ /s2i/bin

# keep install of seldon-core after the COPY to force re-build of layer
RUN pip3 install tensorflow-gpu==1.14.0
RUN pip3 install seldon-core
RUN pip3 install tensorflow-gpu

# Numpy version 1.16.1 required for tf-gpu
RUN pip3 install numpy==1.16.1


EXPOSE 5000

0 comments on commit 9805bb1

Please sign in to comment.