https://github.com/jameskyburz/graphicsmagick-alpine
graphicsmagick alpine image with webp support
https://github.com/jameskyburz/graphicsmagick-alpine
alpine docker graphicsmagick webp
Last synced: about 1 year ago
JSON representation
graphicsmagick alpine image with webp support
- Host: GitHub
- URL: https://github.com/jameskyburz/graphicsmagick-alpine
- Owner: JamesKyburz
- Created: 2017-11-23T14:44:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T08:46:35.000Z (over 7 years ago)
- Last Synced: 2025-03-30T14:22:13.515Z (over 1 year ago)
- Topics: alpine, docker, graphicsmagick, webp
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/jameskyburz/graphicsmagick-alpine/
- Size: 1.95 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# graphicsmagick alpine image with webp support
[dockerhub](https://hub.docker.com/r/jameskyburz/graphicsmagick-alpine/)
## example dockerfile using multi-stage builds
```
FROM jameskyburz/graphicsmagick-alpine:v1.0.0 as gm
FROM jameskyburz/node:8.9.4-alpine
COPY --from=gm /usr/ /usr/
USER node
ENTRYPOINT ["node", "src/index"]
CMD []
EXPOSE 5000
```