Skip to content

Commit

Permalink
Merge pull request #20 from mcginleyr1/master
Browse files Browse the repository at this point in the history
Add dockerfile
  • Loading branch information
AlexTatiyants authored Oct 3, 2016
2 parents d7bac26 + 82f79d5 commit 6d31cdd
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pev:
build: .
ports:
- "8000:8000"
volumes:
- ./:/var/www/pev/
3 changes: 3 additions & 0 deletions tsdrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"strictSSL": false
}

0 comments on commit 6d31cdd

Please sign in to comment.