├── .gitignore ├── Dockerfile └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:edge 2 | RUN apk add --update \ 3 | --repository http://dl-3.alpinelinux.org/alpine/edge/testing \ 4 | vips-tools \ 5 | && rm -rf /var/cache/apk/* 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Dockerfile](https://registry.hub.docker.com/u/wjordan/libvips/) for [libvips](https://github.com/jcupitt/libvips) 2 | [![](https://badge.imagelayers.io/wjordan/libvips:latest.svg)](https://imagelayers.io/?images=wjordan/libvips:latest 'wjordan/libvips:latest') 3 | 4 | Installs [libvips](https://github.com/jcupitt/libvips) in an Alpine Linux Docker image using the [`vips-tools`](http://pkgs.alpinelinux.org/package/edge/testing/x86_64/vips-tools) apk. 5 | 6 | ## How to use 7 | 8 | Just pull/run the image from Docker Hub: 9 | 10 | ```bash 11 | $ docker run wjordan/libvips vips -v 12 | vips-8.4.5-Mon Feb 27 02:18:17 GMT 2017 13 | ``` 14 | 15 | ## License 16 | 17 | Licensed under [MIT](http://opensource.org/licenses/mit-license.html) 18 | --------------------------------------------------------------------------------