We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc0a214 commit fda7414Copy full SHA for fda7414
Dockerfile
@@ -0,0 +1,22 @@
1
+###
2
+# swagger-ui-builder - https://github.com/wordnik/swagger-ui/
3
+# Container for building the swagger-ui static site
4
+#
5
+# Build: docker build -t swagger-ui-builder .
6
+# Run: docker run -v $PWD/dist:/build/dist swagger-ui-builder
7
8
9
+
10
+FROM ubuntu:14.04
11
+MAINTAINER [email protected]
12
13
+ENV DEBIAN_FRONTEND noninteractive
14
15
+RUN apt-get update && apt-get install -y git npm nodejs openjdk-7-jre
16
+RUN ln -s /usr/bin/nodejs /usr/local/bin/node
17
18
+WORKDIR /build
19
+ADD package.json /build/package.json
20
+RUN npm install
21
+ADD . /build
22
+CMD PATH=$PATH:node_modules/.bin cake dist
0 commit comments