Created
October 1, 2015 00:54
-
-
Save omphalos/895c851d372d32100aac to your computer and use it in GitHub Desktop.
wrtc dockerfile
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
# baseline | |
FROM debian:8.2 | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update | |
RUN apt-get install -y curl sudo | |
# node | |
RUN curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash - | |
RUN apt-get install -y nodejs | |
# wrtc deps | |
RUN apt-get update | |
RUN apt-get install -y make python2.7 git-all pkg-config libncurses5-dev libssl-dev libnss3-dev libexpat-dev g++ | |
# install | |
ADD ./ /wrtc/ | |
WORKDIR /wrtc/ | |
RUN npm install -g node-pre-gyp | |
RUN node-pre-gyp install | |
RUN npm install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Working against the v0.0.55 tag.