Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/binocarlos/docker-node

Dockerfile to build node
https://github.com/binocarlos/docker-node

Last synced: 11 days ago
JSON representation

Dockerfile to build node

Awesome Lists containing this project

README

        

docker-node
===========

Dockerfile to build node

```
FROM ubuntu:12.04

# Update package repository
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe multiverse" > /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade -y

# Required packages
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.24
```