k-l-lambda commited on
Commit
44f8844
·
1 Parent(s): 7b97a14

fix: don't suppress npm install errors for essential omr externals

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -86,8 +86,8 @@ RUN cd backend/omr-service && ONNXRUNTIME_NODE_INSTALL=skip npm install --omit=d
86
  RUN npm init -y > /dev/null 2>&1 \
87
  && npm install --no-package-lock \
88
  js-sha1 math-erf lodash spark-md5 portfinder python-shell \
89
- skia-canvas gl msgpackr "yargs@^17" \
90
- > /dev/null 2>&1; true
91
 
92
  # --- Copy pre-built frontend ---
93
  COPY --chown=node dist/ ./dist/
 
86
  RUN npm init -y > /dev/null 2>&1 \
87
  && npm install --no-package-lock \
88
  js-sha1 math-erf lodash spark-md5 portfinder python-shell \
89
+ msgpackr "yargs@^17" \
90
+ && npm install --no-package-lock skia-canvas gl 2>/dev/null; true
91
 
92
  # --- Copy pre-built frontend ---
93
  COPY --chown=node dist/ ./dist/