https://github.com/mull/iojs-base
Small Dockerfile for npm & iojs projects.
https://github.com/mull/iojs-base
Last synced: 2 months 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-23T08:34:57.000Z (over 8 years ago)
- Last Synced: 2024-12-30T23:59:06.733Z (4 months ago)
- Language: Makefile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- 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
```