diff --git a/Dockerfile b/Dockerfile index 16c02e9..3deb4d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,12 +16,6 @@ COPY go.sum . # Install deps RUN make deps - -# XXX: https://github.com/tdewolff/minify/issues/374 -RUN wget https://github.com/tdewolff/minify/releases/download/v2.9.11/minify_linux_amd64.tar.gz && \ - tar -C /go/bin -xvf minify_linux_amd64.tar.gz minify && \ - chmod +x /go/bin/minify - RUN go mod download # Copy static assets diff --git a/Makefile b/Makefile index aac58db..9f531c5 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,7 @@ all: build deps: @go get -u github.com/GeertJohan/go.rice/rice - # XXX: https://github.com/tdewolff/minify/issues/374 - #@go get -u github.com/tdewolff/minify/v2/cmd/... + @go get -u github.com/tdewolff/minify/v2/cmd/... dev : DEBUG=1 dev : build