Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jtblin/debian-node-graphicsmagick
Docker image based off debian:stretch with node and GraphicsMagick installed.
https://github.com/jtblin/debian-node-graphicsmagick
Last synced: 19 days ago
JSON representation
Docker image based off debian:stretch with node and GraphicsMagick installed.
- Host: GitHub
- URL: https://github.com/jtblin/debian-node-graphicsmagick
- Owner: jtblin
- License: other
- Created: 2016-04-16T07:34:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-19T13:53:22.000Z (over 8 years ago)
- Last Synced: 2024-10-28T09:07:05.686Z (2 months ago)
- Homepage:
- Size: 1.95 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debian-node-graphicsmagick
Docker image based off `debian:stretch` with node `v4.4.3` and GraphicsMagick `1.3.23` installed.
This image is useful for front-end CI builds where one needs to compare screenshots with `gm`
for example.## Usage
Use as base image for your build:
```
FROM jtblin/debian-node-graphicsmagick
WORKDIR /src
ADD . ./
RUN chown -R node:node /src
USER node
RUN npm install && npm install bower && ./node_modules/bower/bin/bower install
CMD ["npm", "test"]
```## License
debian-node-graphicsmagick is copyright 2016 Jerome Touffe-Blin and contributors.
It is licensed under the BSD license. See the include LICENSE file for details.