Skip to content

Commit

Permalink
add missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
CatTail authored and seldondev committed Jul 2, 2020
1 parent b19258b commit f741fbf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions wrappers/s2i/python/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@ FROM nvidia/cuda:10.0-cudnn7-runtime-ubuntu18.04

LABEL io.openshift.s2i.scripts-url="image:///s2i/bin"

RUN apt-get update -y && \
apt-get install -y wget
RUN apt-get update -y && apt-get install -qy --no-install-recommends \
wget \
libsm6 \
libxext6 \
libxrender-dev \
libglib2.0-0 \
&& \
rm -rf /var/lib/apt/lists/*

ENV PATH /opt/conda/bin:$PATH

Expand Down

0 comments on commit f741fbf

Please sign in to comment.