Skip to content

Instantly share code, notes, and snippets.

@omphalos
Created October 1, 2015 00:54
Show Gist options
  • Save omphalos/895c851d372d32100aac to your computer and use it in GitHub Desktop.
Save omphalos/895c851d372d32100aac to your computer and use it in GitHub Desktop.
wrtc dockerfile
# 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
@omphalos
Copy link
Author

omphalos commented Oct 1, 2015

Working against the v0.0.55 tag.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment