Skip to content

Commit

Permalink
npm install --force
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuSchl committed Feb 9, 2024
1 parent d56a0b6 commit 6d0e762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/back-dockerPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install dependencies
working-directory: ./back_node
run: |
npm install
npm install --force
- name: Run tests and create summary
id: tests
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion back_node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18.13.0
ARG project_path
COPY ./$project_path/package*.json /home/node/Karassistant/
WORKDIR /home/node/Karassistant/
RUN npm install --omit=dev
RUN npm install --force --omit=dev
RUN npm install @tensorflow/tfjs-node
COPY ./$project_path .
CMD ["npm", "run", "startSever"]

0 comments on commit 6d0e762

Please sign in to comment.