Skip to content

Commit 1073beb

Browse files
committed
fix incorrect path in UI build steps
1 parent c5d2c61 commit 1073beb

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

anms.Containerfile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,17 +109,9 @@ ENV PM2_HOME=${APP_WORK_DIR}/.pm2
109109
# Remaining commands as this user
110110
USER ${APP_USER}:${APP_USER}
111111

112-
113-
# Install NodeJS Server Dependencies
114-
#COPY --chown=${APP_USER}:${APP_USER} \
115-
# anms-ui/server/package.json anms-ui/server/yarn.lock ${APP_WORK_DIR}/server/
116-
#RUN --mount=type=cache,uid=9999,gid=9999,target=/home/${APP_USER}/.cache/yarn \
117-
# cd ${APP_WORK_DIR}/server && \
118-
# yarn install --ignore-scripts --immutable --immutable-cache
119-
120112
# Install Angular UI Dependencies
121113
COPY --chown=${APP_USER}:${APP_USER} \
122-
anms-ui/package.json anms-ui/package-lock.json ${APP_WORK_DIR}/
114+
package.json package-lock.json ${APP_WORK_DIR}/
123115
RUN --mount=type=cache,uid=9999,gid=9999,target=/home/${APP_USER}/.npm \
124116
cd ${APP_WORK_DIR}/ && \
125117
npm ci

0 commit comments

Comments
 (0)