2017-09-04 09:39:17 +00:00
|
|
|
FROM golang:1.9-alpine
|
|
|
|
|
|
|
|
COPY . ${GOPATH}/src/git.icedream.tech/icedream/pixelqr
|
|
|
|
RUN cd "${GOPATH}/src/git.icedream.tech/icedream/pixelqr" \
|
2017-09-04 09:40:15 +00:00
|
|
|
&& apk add --no-cache --virtual .build-deps git \
|
2017-09-04 09:39:17 +00:00
|
|
|
&& go get -v -d ./... \
|
|
|
|
&& go build \
|
|
|
|
&& mv testssh /usr/local/bin \
|
|
|
|
&& cd / \
|
2017-09-04 09:40:15 +00:00
|
|
|
&& rm -r ${GOPATH} \
|
|
|
|
&& apk del --no-cache .build-deps
|
2017-09-04 09:39:17 +00:00
|
|
|
|
|
|
|
CMD ["testssh"]
|