Add some more debug output.

test/ssh
Icedream 2017-09-04 11:41:13 +02:00
parent 9da29de05b
commit d288c96f2d
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 3 additions and 1 deletions

View File

@ -3,8 +3,10 @@ FROM golang:1.9-alpine
COPY . ${GOPATH}/src/git.icedream.tech/icedream/pixelqr
RUN cd "${GOPATH}/src/git.icedream.tech/icedream/pixelqr" \
&& apk add --no-cache --virtual .build-deps git \
&& echo == Downloading... == \
&& go get -v -d ./... \
&& go build \
&& echo == Building... == \
&& go build -v \
&& mv testssh /usr/local/bin \
&& cd / \
&& rm -r ${GOPATH} \