Skip to content

Commit

Permalink
Merge pull request #634 from Jocke4f/fix_603_replace_bcrypt_with_bcry…
Browse files Browse the repository at this point in the history
…ptjs

Replacing bcrypt with bcryptjs
  • Loading branch information
josephdadams authored Jan 20, 2024
2 parents 1cce951 + c7670e3 commit e3ac510
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 528 deletions.
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tasks:
- name: Server
init: npm i -g npm redundancyjs; cd UI; npm i --ignore-scripts; npm run build; cd ..; npm i --ignore-scripts; npm rebuild bcrypt; gp sync-done server
init: npm i -g npm redundancyjs; cd UI; npm i --ignore-scripts; npm run build; cd ..; npm i --ignore-scripts; gp sync-done server
command: npm start
- name: Angular serve
init: gp sync-await server
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ RUN apk add --update nodejs npm \
&& apk add --no-cache --virtual .build-deps alpine-sdk python3 \
&& npm install node-gyp -g \
&& npm i --ignore-script --omit=dev \
&& npm uninstall bcrypt \
&& npm install bcrypt \
&& npm uninstall bcryptjs \
&& npm install bcryptjs \
&& npm uninstall node-gyp -g \
&& apk del .build-deps

Expand Down
Loading

0 comments on commit e3ac510

Please sign in to comment.