Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-11-09 17:28:15 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-11-09 18:21:25 +0300
commitd74e1764796e842c957e00095c8b6aa2b300a130 (patch)
tree7fc36c7db1ded81a01859e4111b2648e857381f1 /Dockerfile
Initial commit.
Code migrated from Bootlint v0.16.8 and adapted
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..2dbcad1
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,14 @@
+# Written against Docker v1.0.0
+FROM node:0.10
+MAINTAINER Chris Rebert <code@rebertia.com>
+
+RUN mkdir -p /usr/src/app
+WORKDIR /usr/src/app
+
+COPY package.json /usr/src/app/
+RUN npm install --production
+COPY . /usr/src/app
+
+CMD [ "npm", "start" ]
+
+EXPOSE 7070