File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 16
16
17
17
FROM golang:1.10-stretch
18
18
19
- ENV URL https://github.com/kubernetes-incubator/apiserver-builder/releases/download/v1.9-alpha.2
20
- ENV BIN apiserver-builder-v1.9-alpha.2-linux-amd64.tar.gz
19
+ RUN apt-get update
20
+ RUN apt-get install less -y
21
+ RUN apt-get install nano -y
22
+
23
+ ENV URL https://github.com/kubernetes-incubator/apiserver-builder/releases/download/v1.9-alpha.4
24
+ ENV BIN apiserver-builder-v1.9-alpha.4-linux-amd64.tar.gz
21
25
ENV DEST /usr/local/apiserver-builder/bin/
22
26
RUN curl -L $URL/$BIN -o /tmp/$BIN
23
27
RUN mkdir -p /usr/local/apiserver-builder
24
28
RUN tar -xzvf /tmp/$BIN -C /usr/local/apiserver-builder/
25
29
26
30
ENV PATH /usr/local/apiserver-builder/bin/:$PATH
27
31
28
- RUN apt-get update
29
- RUN apt-get install less -y
30
- RUN apt-get install nano -yu
31
-
32
32
COPY docs.sh /usr/local/bin/docs.sh
33
33
34
34
CMD docs.sh
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ func RunDocs(cmd *cobra.Command, args []string) {
108
108
"-e" , "DOMAIN=" + util .GetDomain (),
109
109
"-e" , "DIR=" + filepath .Join ("src" , util .Repo ),
110
110
"-e" , "OUTPUT=" + outputDir ,
111
- "gcr.io/kubebuilder/gendocs" ,
111
+ "gcr.io/kubebuilder/gendocs:alpha4 " ,
112
112
)
113
113
if verbose {
114
114
log .Println (strings .Join (c .Args , " " ))
You can’t perform that action at this time.
0 commit comments