removed old code for portal
[eliot.git] / blueprints / common / eliot-ui / frontend-src / Dockerfile
diff --git a/blueprints/common/eliot-ui/frontend-src/Dockerfile b/blueprints/common/eliot-ui/frontend-src/Dockerfile
deleted file mode 100644 (file)
index 7318bf2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# Steps to containerise the ELIOT Portal UI on development mode
-FROM node:current-slim as node
-WORKDIR /usr/src/app
-COPY package.json .
-
-RUN npm cache clean --force
-RUN npm install
-RUN npm audit fix
-
-COPY . .
-
-RUN npm run build --prod
-
-EXPOSE 4200
-CMD [ "npm", "start" ]
-#COPY . .
-#RUN npm run build --prod