Skip to content

Commit

Permalink
chore: Added docker build and run commands to package.json (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
vr-varad authored Jun 7, 2024
1 parent e80d47d commit af61791
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@
"db:reset": "pnpm run --filter=api db:reset",
"format": "prettier apps/**/*.{ts,tsx} --write",
"prepare": "husky",
"sourcemaps:api": "turbo run sourcemaps --filter=api"
"sourcemaps:api": "turbo run sourcemaps --filter=api",
"docker:run:web": "docker run --env-file .env --name ks-web --rm -p 3000:3000 ks-web",
"docker:build:web": "docker build -t ks-web -f apps/web/Dockerfile .",
"docker:run:api": "docker run --env-file .env --name ks-api --rm -p 4200:4200 ks-api",
"docker:build:api": "docker build -t ks-api -f apps/api/Dockerfile ."
},
"devDependencies": {
"@sentry/cli": "^2.28.6",
Expand Down

0 comments on commit af61791

Please sign in to comment.