-
Notifications
You must be signed in to change notification settings - Fork 18
/
Dockerfile.docker
74 lines (61 loc) · 2.14 KB
/
Dockerfile.docker
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
ARG RUNC_VERSION=9f9c96235cc97674e935002fc3d78361b696a69e
FROM golang:1.10-alpine3.7 AS build-env
RUN apk add --no-cache \
zeromq-dev=4.2.5-r0 \
zeromq=4.2.5-r0 \
gcc \
musl-dev
ADD . /go/src/github.com/caicloud/ciao
WORKDIR /go/src/github.com/caicloud/ciao
RUN go build github.com/caicloud/ciao/cmd/kubeflow-kernel \
&& mv kubeflow-kernel /usr/bin/kubeflow-kernel
# The images are copied from https://github.com/genuinetools/img/blob/master/Dockerfile.
FROM golang:1.10-alpine AS gobuild-base
RUN apk add --no-cache \
bash \
build-base \
gcc \
git \
libseccomp-dev \
linux-headers \
make
FROM gobuild-base AS runc
ARG RUNC_VERSION
RUN git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \
&& cd "$GOPATH/src/github.com/opencontainers/runc" \
&& make static BUILDTAGS="seccomp" EXTRA_FLAGS="-buildmode pie" EXTRA_LDFLAGS="-extldflags \\\"-fno-PIC -static\\\"" \
&& mv runc /usr/bin/runc
FROM gobuild-base AS img
RUN git clone https://github.com/genuinetools/img.git "$GOPATH/src/github.com/genuinetools/img" \
&& go get -u github.com/jteeuwen/go-bindata/... \
&& cd "$GOPATH/src/github.com/genuinetools/img" \
&& make static && mv img /usr/bin/img
FROM alpine:3.7
MAINTAINER Ce Gao <gaoce@caicloud.io>
RUN apk add --no-cache \
bash \
git \
shadow \
shadow-uidmap \
strace \
zeromq=4.2.5-r0 \
libzmq=4.2.5-r0 \
zeromq-dev=4.2.5-r0 \
gcc \
linux-headers \
g++ \
python \
python-dev \
py-pip \
musl-dev
# install the kernel gateway
RUN pip install --no-cache-dir jupyter_kernel_gateway
COPY --from=img /usr/bin/img /usr/bin/img
COPY --from=runc /usr/bin/runc /usr/bin/runc
COPY --from=build-env /usr/bin/kubeflow-kernel /usr/bin/kubeflow-kernel
COPY ./hack/config.yaml /etc/ciao/config.yaml
COPY ./artifacts /usr/share/jupyter/kernels/kubeflow
# run kernel gateway on container start, not notebook server
EXPOSE 8889
ENTRYPOINT [ "jupyter", "kernelgateway" ]
CMD ["--KernelGatewayApp.ip=0.0.0.0", "--KernelGatewayApp.port=8889", "--JupyterWebsocketPersonality.list_kernels=True", "--log-level=DEBUG"]