Remove unused Dockerfile

This commit is contained in:
cwbeitel 2018-03-08 04:33:51 +00:00
parent f6bb597dba
commit 64de15f447
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM gcr.io/kubeflow/tensorflow-notebook-cpu
RUN curl https://sdk.cloud.google.com | bash
RUN mkdir -p ${HOME}/bin && mkdir -p ${HOME}/lib && cd ${HOME}/lib && curl -L -o ${HOME}/lib/ks.tgz "https://github.com/ksonnet/ksonnet/releases/download/v0.8.0/ks_0.8.0_linux_amd64.tar.gz" && tar -xzvf ${HOME}/lib/ks.tgz && rm ${HOME}/lib/ks.tgz && ln -s ${HOME}/lib/ks_0.8.0_linux_amd64/ks ${HOME}/bin/ks
RUN curl -sSL -o /home/jovyan/bin/argo https://github.com/argoproj/argo/releases/download/v2.0.0/argo-linux-amd64
RUN chmod +x /home/jovyan/bin/argo
RUN mkdir -p /home/jovyan/kubeflow-examples/agents/
ADD . /home/jovyan/kubeflow-examples/agents/
USER root
# Needed for rendering and uploading renders
RUN apt-get update
RUN apt-get install -y libav-tools ffmpeg git
RUN curl https://get.docker.com | bash
RUN usermod -aG docker jovyan
#RUN pip install -r /home/jovyan/kubeflow-examples/agents/requirements.txt
RUN chown -R jovyan /home/jovyan/kubeflow-examples