@@ -7,7 +7,6 @@ RUN npm install
77COPY service/ ./
88RUN npm run build
99
10- # RUN rm -rf node_modules
1110RUN npm pack
1211
1312# Build web-app
@@ -19,7 +18,6 @@ RUN npm install
1918COPY web-app/ ./
2019RUN npm run build
2120
22- # RUN rm -rf node_modules
2321RUN npm pack ./dist
2422
2523FROM node:20.11.1 AS build-arcwebplugin
@@ -46,7 +44,7 @@ WORKDIR /imageserviceplugin
4644COPY plugins/image/service/package*.json ./
4745RUN npm install
4846COPY --from=build-service /service /imageserviceplugin/node_modules/@ngageoint/mage.service
49- COPY plugins/arcgis /service/ ./
47+ COPY plugins/image /service/ ./
5048RUN npm run build
5149RUN npm pack
5250
@@ -56,12 +54,14 @@ COPY --from=build-service /service/ngageoint*.tgz /service/
5654COPY --from=build-webapp /web-app/ngageoint*.tgz /web-app/
5755COPY --from=build-arcwebplugin /arcgiswebplugin/ngageoint*.tgz /arcgiswebplugin/
5856COPY --from=build-arcserviceplugin /arcgisserviceplugin/ngageoint*.tgz /arcgisserviceplugin/
57+ COPY --from=build-imageserviceplugin /imageserviceplugin/ngageoint*.tgz /imageserviceplugin/
5958
6059WORKDIR /instance
6160RUN npm install ../service/ngageoint-mage.service*.tgz \
6261 npm install ../web-app/ngageoint-mage.web-app*.tgz \
6362 npm install ../arcgiswebplugin/ngageoint*.tgz \
64- npm install ../arcgisserviceplugin/ngageoint*.tgz
63+ npm install ../arcgisserviceplugin/ngageoint*.tgz \
64+ npm install ../imageserviceplugin/ngageoint*.tgz
6565
6666
6767ENV NODE_PATH=./node_modules
0 commit comments