Skip to content

Commit

Permalink
fix upgrade errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmojicatech committed Aug 30, 2024
1 parent d631ffe commit 1dc3c5c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
3 changes: 2 additions & 1 deletion marvintherapy-public-dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ COPY ./dist/apps/marvintherapy-public/.next ./.next
COPY ./dist/apps/marvintherapy-public/public ./public
COPY ./dist/apps/marvintherapy-public/next.config.js ./next.config.js
COPY ./dist/apps/marvintherapy-public/package.json ./package.json
COPY ./dist/apps/marvintherapy-public/.nx-helpers ./.nx-helpers
RUN npm i

CMD ["node_modules/.bin/next", "start"]
CMD ["npm", "start"]


38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"docker-build-marvintherapy-public": "nx build --prod marvintherapy-public && docker build -t paulmojicatech/marvintherapy-public-image -f marvintherapy-public-dockerfile . && docker push paulmojicatech/marvintherapy-public-image",
"docker-build-marvintherapy-public": "nx build --prod marvintherapy-public && docker build -t paulmojicatech/marvintherapy-public-image --platform linux/amd64 -f marvintherapy-public-dockerfile . && docker push paulmojicatech/marvintherapy-public-image",
"docker-build-marvintherapy-api": "cd apps/marvintherapy-api/marvintherapy-api && docker build -t paulmojicatech/marvintherapy-api-image . && docker push paulmojicatech/marvintherapy-api-image && ../../..",
"marvintherapy-public": "nx serve marvintherapy-public",
"marvintherapy-api": "cd apps/marvintherapy-api/marvintherapy-api && dotnet run",
Expand Down Expand Up @@ -37,22 +37,22 @@
"@capacitor/core": "^5.0.3",
"@capacitor/ios": "^5.0.3",
"@ngrx/store-devtools": "18.0.2",
"@nrwl/js": "19.6.3",
"@nrwl/js": "19.6.4",
"@nx-dotnet/core": "^1.13.0",
"@nx/angular": "19.6.3",
"@nx/cypress": "19.6.3",
"@nx/eslint": "19.6.3",
"@nx/eslint-plugin": "19.6.3",
"@nx/express": "19.6.3",
"@nx/jest": "19.6.3",
"@nx/js": "19.6.3",
"@nx/next": "19.6.3",
"@nx/node": "19.6.3",
"@nx/react": "19.6.3",
"@nx/vite": "19.6.3",
"@nx/web": "19.6.3",
"@nx/webpack": "19.6.3",
"@nx/workspace": "19.6.3",
"@nx/angular": "19.6.4",
"@nx/cypress": "19.6.4",
"@nx/eslint": "19.6.4",
"@nx/eslint-plugin": "19.6.4",
"@nx/express": "19.6.4",
"@nx/jest": "19.6.4",
"@nx/js": "19.6.4",
"@nx/next": "19.6.4",
"@nx/node": "19.6.4",
"@nx/react": "19.6.4",
"@nx/vite": "19.6.4",
"@nx/web": "19.6.4",
"@nx/webpack": "19.6.4",
"@nx/workspace": "19.6.4",
"@nxext/ionic-angular": "^17.0.1",
"@nxext/ionic-react": "^17.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
Expand Down Expand Up @@ -98,7 +98,7 @@
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"minimist": "^1.2.6",
"nx": "19.6.3",
"nx": "19.6.4",
"postcss": "8.4.38",
"prettier": "2.7.1",
"puppeteer": "^15.5.0",
Expand Down Expand Up @@ -148,8 +148,8 @@
"@ngrx/effects": "18.0.2",
"@ngrx/operators": "^18.0.0",
"@ngrx/store": "18.0.2",
"@nrwl/devkit": "19.6.3",
"@nx/storybook": "19.6.3",
"@nrwl/devkit": "19.6.4",
"@nx/storybook": "19.6.4",
"@nxext/stencil": "^15.7.0",
"@storybook/addon-interactions": "^8.2.8",
"ag-grid-angular": "^28.1.0",
Expand Down

0 comments on commit 1dc3c5c

Please sign in to comment.