updated to use a common logging library and enable log level configuration
Change-Id: Ib473615f25318c3b40cd6cf3bd49248e8a3d4fb1
diff --git a/automation/Dockerfile b/automation/Dockerfile
index 22ce5f7..c864076 100644
--- a/automation/Dockerfile
+++ b/automation/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:alpine
+FROM golang:1.6-alpine
RUN apk --update add openssh-client git
@@ -7,13 +7,9 @@
ADD . /go/src/gerrit.opencord.org/maas/cord-maas-automation
WORKDIR /go/src/gerrit.opencord.org/maas/cord-maas-automation
-RUN /go/bin/godep restore
+RUN /go/bin/godep restore || true
WORKDIR /go
-
RUN go install gerrit.opencord.org/maas/cord-maas-automation
-RUN mkdir -p /root/.ssh
-COPY ssh-config /root/.ssh/config
-
ENTRYPOINT ["/go/bin/cord-maas-automation"]