VOL-1558 Update vendored voltha-go and other items
Result of running dep ensure. golang openolt now
builds.
Also update dockerfile to used specific alpine version
Change-Id: I1e5407e25bb0636a241a0650d1e44e5df567f44b
diff --git a/docker/Dockerfile.openolt b/docker/Dockerfile.openolt
index ed20905..0e20b44 100644
--- a/docker/Dockerfile.openolt
+++ b/docker/Dockerfile.openolt
@@ -1,7 +1,7 @@
# -------------
# Build stage
-FROM golang:1.10.7-alpine AS build-env
+FROM golang:1.10-alpine3.9 AS build-env
# Install required packages
RUN apk add --no-cache wget git make build-base protobuf protobuf-dev
@@ -26,7 +26,7 @@
# -------------
# Image creation stage
-FROM alpine:3.8
+FROM alpine:3.9
# Set the working directory
WORKDIR /app