2015-07-16 02:46:04 +00:00
|
|
|
FROM java:7-jre
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -qq -y asciidoctor
|
|
|
|
RUN apt-get install -qq -y unzip
|
|
|
|
RUN wget https://services.gradle.org/distributions/gradle-2.5-bin.zip
|
|
|
|
RUN mkdir build/
|
|
|
|
RUN unzip gradle-2.5-bin.zip -d build/
|
|
|
|
|
|
|
|
COPY build.gradle build/
|
|
|
|
COPY gen-swagger-docs.sh build/
|
|
|
|
|
|
|
|
#run the script once to download the dependent java libraries into the image
|
|
|
|
RUN mkdir /output
|
2015-10-19 23:57:38 +00:00
|
|
|
RUN mkdir /swagger-source
|
|
|
|
RUN wget https://raw.githubusercontent.com/kubernetes/kubernetes/master/api/swagger-spec/v1.json -O /swagger-source/v1.json
|
|
|
|
RUN build/gen-swagger-docs.sh v1 https://raw.githubusercontent.com/GoogleCloudPlatform/kubernetes/master/pkg/api/v1/register.go
|
|
|
|
RUN rm /output/*
|
|
|
|
RUN rm /swagger-source/*
|
2015-07-16 02:46:04 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["build/gen-swagger-docs.sh"]
|