1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-03-22 20:21:28 +02:00

Relax go version in Dockerfile

This commit is contained in:
DarthSim 2017-09-15 13:46:12 +03:00
parent 3224221372
commit d85df7335d

View File

@ -10,7 +10,7 @@ ADD . /go/src/github.com/DarthSim/imgproxy
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk add --no-cache --update bash vips ca-certificates \
&& apk add --no-cache --virtual .build-deps go=1.8.3-r0 gcc musl-dev fftw-dev vips-dev \
&& apk add --no-cache --virtual .build-deps go gcc musl-dev fftw-dev vips-dev \
&& cd /go/src/github.com/DarthSim/imgproxy \
&& go build -v -o /usr/local/bin/imgproxy \
&& apk del --purge .build-deps \