From d710d64bfcb6dceb2225241bab389a14479e4baf Mon Sep 17 00:00:00 2001 From: Rob McGinley Date: Sun, 24 Jan 2016 14:31:17 -0500 Subject: Docker file for pev --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4552a55 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:latest + +RUN apk update && apk add g++ make nodejs python ruby + +COPY . /var/www/pev + +WORKDIR /var/www/pev + +RUN npm install --unsafe-perm + +CMD npm start -- cgit v1.2.3 From 7f0713cbd84157a23605fc2815da44d04caba0dc Mon Sep 17 00:00:00 2001 From: Rob McGinley Date: Sun, 24 Jan 2016 22:28:46 -0500 Subject: Grr node on alpine no fun... --- Dockerfile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 4552a55..7cbd1fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,17 @@ -FROM alpine:latest +FROM debian:jessie -RUN apk update && apk add g++ make nodejs python ruby +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 . /var/www/pev WORKDIR /var/www/pev -RUN npm install --unsafe-perm +RUN npm install -g gulp + +RUN npm install -CMD npm start +CMD cd /var/www/pev && npm start -- cgit v1.2.3 From 82f79d5aacb744f5904dfd57989e96e0462fffd1 Mon Sep 17 00:00:00 2001 From: Rob McGinley Date: Fri, 26 Aug 2016 09:31:50 -0400 Subject: Allow non strict ssl @AlexBoehner --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 7cbd1fd..b0a2b78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ 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 -- cgit v1.2.3