removed exmple apps code
[ealt-edge.git] / example-apps / ROBO / RoboUI / Dockerfile
diff --git a/example-apps/ROBO/RoboUI/Dockerfile b/example-apps/ROBO/RoboUI/Dockerfile
deleted file mode 100644 (file)
index 223b916..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# Stage 1
-
-#FROM node:10-alpine as build-step
-
-FROM node:12.9 as build-step
-
-RUN mkdir -p /app
-
-WORKDIR /app
-
-COPY package.json /app
-
-RUN npm install
-
-COPY . /app
-
-RUN npm run build --prod
-
-# Stage 2
-
-FROM nginx:1.17.1-alpine
-
-COPY --from=build-step /app/dist/RoboUI /usr/share/nginx/html