Changed Dockerfile

This commit is contained in:
Andreas Neue 2019-01-09 09:36:29 +01:00
parent 09c7df1091
commit 271590f775
2 changed files with 6 additions and 5 deletions

View file

@ -14,7 +14,8 @@ RUN wget https://github.com/libvips/libvips/releases/download/v8.7.3/vips-8.7.3.
cd vips-8.7.3 && \
./configure && \
make && \
make install
make install && \
go get -v -u github.com/davidbyttow/govips/pkg/vips && \
go install -v ./...
RUN go get -v -u github.com/davidbyttow/govips/pkg/vips
RUN go install -v ./...
CMD ["image-resizer", "-s", "https://images.example.com/"]