https://github.com/mull/iojs-base
Small Dockerfile for npm & iojs projects.
https://github.com/mull/iojs-base
Last synced: 7 days ago
JSON representation
Small Dockerfile for npm & iojs projects.
- Host: GitHub
- URL: https://github.com/mull/iojs-base
- Owner: mull
- Created: 2015-08-21T08:08:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-23T08:34:57.000Z (almost 9 years ago)
- Last Synced: 2025-05-30T18:21:59.300Z (about 1 month ago)
- Language: Makefile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Intro
Just a small base container for Docker that has node, git & bash installed. Meant for npm projects. Based on `alpine/node-6.6`.## Reasoning:
- node: Latest "trustable" (not necessariy LTS) version. Bye bye joyent & 0.12!
- git: A lot of npm projects reference git repositories.
- bash: Small enough to not be a nuisance, useful as heck for debugging.## Usage:
Just specify the package in your Dockerfile's `FROM`:```
FROM mullsork/iojs-base
```