@@ -51,9 +51,6 @@ RUN npm pack
5151FROM node:20.11.1 AS build-sftpserviceplugin
5252WORKDIR /sftpserviceplugin
5353COPY plugins/sftp/service/package*.json ./
54- RUN ls -la /sftpserviceplugin
55- RUN cat package.json
56- RUN npm cache clean --force
5754RUN npm install
5855COPY --from=build-service /service /sftpserviceplugin/node_modules/@ngageoint/mage.service
5956COPY plugins/sftp/service/ ./
@@ -67,24 +64,24 @@ COPY plugins/sftp/web/package*.json ./
6764RUN npm install
6865COPY plugins/sftp/web/ ./
6966RUN npm run build
70- RUN npm pack ./dist/admin
67+ RUN npm pack ./dist/main
7168
7269# Build instance
7370FROM node:20.11.1 AS build-instance
7471COPY --from=build-service /service/ngageoint*.tgz /service/
7572COPY --from=build-webapp /web-app/ngageoint*.tgz /web-app/
7673COPY --from=build-arcwebplugin /arcgiswebplugin/ngageoint*.tgz /arcgiswebplugin/
7774COPY --from=build-arcserviceplugin /arcgisserviceplugin/ngageoint*.tgz /arcgisserviceplugin/
78- COPY --from=build-sftpwebplugin /sftpwebplugin/ngageoint*.tgz /sftpwebplugin/
7975COPY --from=build-sftpserviceplugin /sftpserviceplugin/ngageoint*.tgz /sftpserviceplugin/
76+ COPY --from=build-sftpwebplugin /sftpwebplugin/ngageoint*.tgz /sftpwebplugin/
8077# COPY --from=build-imageserviceplugin /imageserviceplugin/ngageoint*.tgz /imageserviceplugin/
8178
8279WORKDIR /instance
8380RUN ls -la ../sftpwebplugin
84- RUN npm install ../sftpwebplugin/ngageoint*.tgz
85- RUN npm install ../sftpserviceplugin/ngageoint*.tgz
8681RUN npm install ../service/ngageoint-mage.service*.tgz
87- RUN npm install ../web-app/ngageoint-mage.web-app*.tgz
82+ RUN npm install ../web-app/ngageoint-mage.web-app*.tgz
83+ RUN npm install ../sftpwebplugin/ngageoint-mage.sftp.web*.tgz
84+ RUN npm install ../sftpserviceplugin/ngageoint-mage.sftp.service*.tgz
8885RUN npm install ../arcgiswebplugin/ngageoint*.tgz
8986RUN npm install ../arcgisserviceplugin/ngageoint*.tgz
9087
0 commit comments