Use makefile && get dependencies

This commit is contained in:
Glenn Y. Rolland 2019-09-04 09:28:06 +02:00
parent bb29af1824
commit f368ae71d3

View file

@ -15,7 +15,9 @@ RUN git clone \
# COPY . /app
WORKDIR /app
RUN CGO_ENABLED=0 go build -v ./...
RUN go get -u \
&& CGO_ENABLED=0 make build
##