[SEBA-233]

Change to using kafka for GUI events, instead of redis

Change-Id: I205f18632f15b44a5447530af33e94dd8c88674e
diff --git a/Dockerfile b/Dockerfile
index 7663336..d08e937 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,7 +2,7 @@
 # To build use: docker build -t xosproject/xos-ws .
 # To run use: docker run -p 3000:3000 -d xosproject/xos-ws
 
-FROM node:7.9.0
+FROM node:10-alpine
 
 # Set environment variables
 ENV CODE_SOURCE .
@@ -11,6 +11,9 @@
 # Create app directory
 WORKDIR ${CODE_DEST}
 
+# install librdkafka
+RUN apk --no-cache add -U python make bash g++
+
 # Copy over app dependencies and source files
 COPY ${CODE_SOURCE}/package.json ${CODE_DEST}/
 COPY ${CODE_SOURCE}/src/ ${CODE_DEST}/src/
@@ -39,4 +42,3 @@
       org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date
 
 CMD [ "npm", "start" ]
-