aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..b0a2b78
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,19 @@
+FROM debian:jessie
+
+RUN apt-get update && apt-get -y install apt-transport-https curl g++ make python ruby
+
+RUN curl -sL https://deb.nodesource.com/setup_4.x | bash -
+
+RUN apt-get -y install nodejs
+
+COPY tsdrc ~/.tsdrc
+
+COPY . /var/www/pev
+
+WORKDIR /var/www/pev
+
+RUN npm install -g gulp
+
+RUN npm install
+
+CMD cd /var/www/pev && npm start