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

chore: Added docker build and run commands to package.json #258

Merged
merged 4 commits into from
Jun 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading