Core libraries and tools part for pro architecture. It's a submodule - use from this perspective http://git.maniak.pro/madmaniak/pro
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
247 B

FROM node:8
RUN mkdir -p /primus
WORKDIR /primus
RUN apt-get install libc6
RUN npm install -g browserify coffee-script derequire http-server
ADD package.json package.json
RUN npm install && cd node_modules/primus && npm install && npm run build