Dockerfile for libvips
Installs libvips on ubuntu:20.04
as base image.
Download the image using:
$ docker pull marcbachmann/libvips
# .... pulling down image
Or extend from it:
echo '
FROM marcbachmann/libvips
RUN apt-get update && apt-get install curl && curl -fsSL https://deb.nodesource.com/setup_16.x | bash && apt-get install nodejs
' > Dockerfile
docker build -t libvips-with-node .
Licensed under MIT