-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from mcginleyr1/master
Add dockerfile
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pev: | ||
build: . | ||
ports: | ||
- "8000:8000" | ||
volumes: | ||
- ./:/var/www/pev/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"strictSSL": false | ||
} |