jbilcke-hf HF staff commited on
Commit
5d35007
·
1 Parent(s): fb66bfc

trying to debug

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -44,6 +44,8 @@ WORKDIR $HOME/app
44
  # prepare to install the Node app
45
  COPY --chown=user package*.json .
46
 
 
 
47
  RUN pnpm install
48
 
49
  # ok! let's try to compile llama-node
@@ -53,7 +55,7 @@ WORKDIR $HOME/app/llama-node
53
 
54
  RUN git submodule update --init --recursive
55
 
56
- # RUN pnpm install --ignore-scripts
57
 
58
  WORKDIR $HOME/app/llama-node/packages/llama-cpp
59
 
 
44
  # prepare to install the Node app
45
  COPY --chown=user package*.json .
46
 
47
+ RUN pnpm --version
48
+
49
  RUN pnpm install
50
 
51
  # ok! let's try to compile llama-node
 
55
 
56
  RUN git submodule update --init --recursive
57
 
58
+ RUN pnpm install --ignore-scripts
59
 
60
  WORKDIR $HOME/app/llama-node/packages/llama-cpp
61