Moved SPA to port 4000 #CORD-712

Change-Id: Ic637222b6a15419e5f2629c4ceacc19394f0aa3a
diff --git a/Dockerfile b/Dockerfile
index 8dd7ce4..1e33e62 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,11 +19,14 @@
 # Add the app
 COPY ${CODE_SOURCE} ${CODE_DEST}
 
-# Build the app
+# Install Deps
 WORKDIR ${CODE_DEST}
 RUN npm install 
-RUN npm run build
 
 # Override nginx configutaion
+RUN mkdir -p /var/log/nginx/log
 RUN mv ${CODE_SOURCE}/nginx.conf /etc/nginx/conf.d/default.conf
-#RUN service nginx restart
\ No newline at end of file
+
+# Build the app
+EXPOSE 4000
+RUN npm run build
\ No newline at end of file