Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/binocarlos/nodejs

Dockerfile to build node
https://github.com/binocarlos/nodejs

Last synced: 11 days ago
JSON representation

Dockerfile to build node

Awesome Lists containing this project

README

        

nodejs
======

Dockerfile to build node

```
FROM ubuntu:12.04
MAINTAINER Kai Davenport

RUN apt-get update -q

RUN apt-get install -y rlwrap wget git curl software-properties-common python python-software-properties g++ make
RUN wget -qO /usr/local/bin/nave https://raw.github.com/isaacs/nave/master/nave.sh
RUN chmod a+x /usr/local/bin/nave
RUN nave usemain 0.10.29 || nave usemain 0.10.29

ENTRYPOINT ["/usr/local/bin/node"]
```