Go to file
an ee3287b954
continuous-integration/drone/push Build is passing Details
add build status to readme
2019-08-01 18:12:32 +02:00
.drone.yml add build status to readme 2019-08-01 18:12:32 +02:00
Dockerfile check on allowed sizes, parameter -f 2019-07-31 07:06:38 +02:00
LICENSE LICENSE 2019-01-09 09:20:50 +01:00
README.md add build status to readme 2019-08-01 18:12:32 +02:00
main.go fix typo 2019-07-31 07:22:55 +02:00

README.md

Build Status

image-transformer

Derived from https://karthikkaranth.me/blog/image-resizing-server-go-libvips/

Build docker image

docker build -t dr.dnix.de/image-transformer .

Build binary

wget https://github.com/libvips/libvips/releases/download/v8.7.3/vips-8.7.3.tar.gz
tar xvzf vips-8.7.3.tar.gz
cd vips-8.7.3
./configure && make && make install
ldconfig
cd ..
go get -v -u github.com/davidbyttow/govips/pkg/vips && go install -v ./...