forked from beakerbrowser/beaker
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docker images and update beaker-plugin dep
- Loading branch information
Showing
5 changed files
with
32 additions
and
1 deletion.
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,2 @@ | ||
node_modules | ||
docker |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
node_modules | ||
node_modules* | ||
*.log | ||
.DS_Store | ||
Thumbs.db | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"author": "Josh Wilson <[email protected]>", | ||
"main": "background-process.build.js", | ||
"dependencies": { | ||
"beaker-plugin-safe": "0.0.3", | ||
"beaker-plugin-safe": "0.0.4", | ||
"co": "^4.6.0", | ||
"electron-localshortcut": "^0.6.0", | ||
"emit-stream": "^0.1.2", | ||
|
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,28 @@ | ||
# This is a comment | ||
FROM ubuntu:14.04 | ||
MAINTAINER Josh Wilson <[email protected]> | ||
# Replace shell with bash so we can source files | ||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | ||
# make sure apt is up to date | ||
RUN apt-get update --fix-missing | ||
RUN apt-get install -y curl | ||
RUN apt-get install -y build-essential libssl-dev | ||
|
||
|
||
ENV NVM_DIR /usr/local/nvm | ||
ENV NODE_VERSION 6.3.1 | ||
# RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | ||
# RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.7/install.sh | bash | ||
# RUN command -v nvm | ||
# # RUN nvm install 6.3.1 | ||
|
||
|
||
# Install nvm with node and npm | ||
RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.31.7/install.sh | bash \ | ||
&& source $NVM_DIR/nvm.sh \ | ||
&& nvm install $NODE_VERSION \ | ||
&& nvm alias default $NODE_VERSION \ | ||
&& nvm use default | ||
|
||
ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules | ||
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH |
File renamed without changes.