Update xApp-fw
Change-Id: Idbdd5fa434d035bd6929935e57d74b52518464a3
Signed-off-by: Mohamed Abukar <abukar.mohamed@nokia.com>
diff --git a/build/Dockerfile b/build/Dockerfile
index f991c8a..7a73668 100755
--- a/build/Dockerfile
+++ b/build/Dockerfile
@@ -23,7 +23,14 @@
RUN apt update && apt install --reinstall -y ca-certificates && update-ca-certificates
# Install utilities
-RUN apt update && apt install -y iputils-ping net-tools curl sudo
+RUN apt update && apt install -y iputils-ping net-tools curl sudo build-essential
+
+# Installing the go version
+ENV GOLANG_VERSION 1.17.1
+RUN wget --quiet https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz \
+ && tar xvzf go$GOLANG_VERSION.linux-amd64.tar.gz -C /usr/local
+ENV PATH="/usr/local/go/bin:${PATH}"
+ENV GOPATH="/go"
# Install dependencies, compile and test the module
RUN mkdir -p /go/src/am