https://github.com/rumkin/alpine-node-buildbox
Application build system for nodejs based on alpine linux
https://github.com/rumkin/alpine-node-buildbox
Last synced: 5 months ago
JSON representation
Application build system for nodejs based on alpine linux
- Host: GitHub
- URL: https://github.com/rumkin/alpine-node-buildbox
- Owner: rumkin
- Created: 2015-11-06T11:47:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-06T14:29:34.000Z (over 10 years ago)
- Last Synced: 2025-03-25T01:42:39.400Z (about 1 year ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Node Buildbox
This is heavy weighted docker container which used only to build node application.
It should not be used in production runtime to run service instances. It's
goal is to include basic node build tools like gcc, make, etc and separate it
from light weighted runtime container.
## Building
When you need to install some modules which should be compiled with gcc run in
project directory:
```bash
docker run --rm -v $PWD:/app -w /app rumkin/alpine-node-buildbox npm install
```
It will download and install all modules into node_modules directory.