Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/binocarlos/nodejs
- Owner: binocarlos
- Created: 2014-07-27T19:18:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-28T15:08:06.000Z (over 10 years ago)
- Last Synced: 2024-04-14T14:36:44.686Z (7 months ago)
- Language: Shell
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
nodejs
======Dockerfile to build node
```
FROM ubuntu:12.04
MAINTAINER Kai DavenportRUN 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.29ENTRYPOINT ["/usr/local/bin/node"]
```