Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/binocarlos/docker-node
- Owner: binocarlos
- Created: 2013-12-21T13:43:22.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-04T16:35:22.000Z (over 10 years ago)
- Last Synced: 2024-04-14T14:36:39.386Z (7 months ago)
- Language: Shell
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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++ makeRUN wget -qO /usr/local/bin/nave https://raw.github.com/isaacs/nave/master/nave.sh
RUN chmod a+x /usr/local/bin/naveRUN nave usemain 0.10.24
```