forked from kubeflow/arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.notebook.kubeflow
38 lines (24 loc) · 1.16 KB
/
Dockerfile.notebook.kubeflow
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
ARG BASE_IMAGE=registry.aliyuncs.com/kubeflow-images-public/tensorflow-1.12.0-notebook-gpu:v0.4.0
ARG USER=jovyan
FROM golang:1.10-stretch as build
RUN mkdir -p /go/src/github.com/kubeflow/arena
WORKDIR /go/src/github.com/kubeflow/arena
COPY . .
RUN make
RUN wget https://storage.googleapis.com/kubernetes-helm/helm-v2.14.1-linux-amd64.tar.gz && \
tar -xvf helm-v2.14.1-linux-amd64.tar.gz && \
mv linux-amd64/helm /usr/local/bin/helm && \
chmod u+x /usr/local/bin/helm
ENV K8S_VERSION v1.11.2
RUN curl -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x /usr/local/bin/kubectl
FROM $BASE_IMAGE
COPY --from=build /go/src/github.com/kubeflow/arena/bin/arena /usr/local/bin/arena
COPY --from=build /usr/local/bin/helm /usr/local/bin/arena-helm
COPY --from=build /go/src/github.com/kubeflow/arena/charts /charts
RUN chmod a+rx /usr/local/bin/* && \
chmod a+rx -R /charts
RUN apt-get update && \
apt-get install bash-completion -y && \
echo "source /etc/bash_completion" >> /etc/bash.bashrc && \
echo "source <(arena completion bash)" >> /etc/bash.bashrc
USER $USER