Merge pull request #20 from mcginleyr1/master

Add dockerfile
This commit is contained in:
Alex Tatiyants 2016-10-03 08:39:15 -07:00 committed by GitHub
commit 6d31cdd75f
3 changed files with 28 additions and 0 deletions

19
Dockerfile Normal file
View File

@ -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

6
docker-compose.yml Normal file
View File

@ -0,0 +1,6 @@
pev:
build: .
ports:
- "8000:8000"
volumes:
- ./:/var/www/pev/

3
tsdrc Normal file
View File

@ -0,0 +1,3 @@
{
"strictSSL": false
}