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

github.com/twbs/bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 2dbcad1..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,14 +0,0 @@
-# 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