install rice during docker build

pull/13/head
Jeffrey Paul 3 years ago
parent 52ce35e8c3
commit 885a43709e
  1. 2
      Dockerfile
  2. 4
      Makefile

@ -20,7 +20,7 @@ RUN go mod download
COPY ./ ./
#RUN make lint
RUN make httpd
RUN make rice-install && make httpd
RUN go mod vendor
RUN tar -c . | bzip2 > /src.tbz2

@ -48,7 +48,9 @@ docker:
cd ../.. && \
rice append -i ./httpserver --exec ./httpd
tools:
tools: rice-install
go get -v github.com/golangci/golangci-lint/cmd/golangci-lint@v1.31.0
go get -v mvdan.cc/gofumpt/gofumports
rice-install:
go get -v github.com/GeertJohan/go.rice/rice

Loading…
Cancel
Save