Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dockerfile base to node:20-alpine #129

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Updated dependencies
  • Loading branch information
jcortejoso committed Jan 11, 2024
commit cdcbfa65479e27797e53ee1ceb87944659364de4
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --async=false",
"build": "ng build --prod --async=false",
"test": "ng test --no-watch --code-coverage --async=false",
"test:watch": "ng test --code-coverage --async=false",
"lint": "ng lint --async=false",
"e2e": "ng e2e --async=false",
"start": "ng serve",
"build": "ng build --prod",
"test": "ng test --no-watch --code-coverage",
"test:watch": "ng test --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"set:variables": "scripts/set-env-variables.js ./dist"
},
"private": true,
Expand Down
Loading