Skip to content

Commit

Permalink
Add --no-cache to docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
Siegrift committed Mar 14, 2024
1 parent a298255 commit 8e33b10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"clean": "rm -rf coverage dist artifacts cache",
"dev:eth-node": "hardhat node",
"dev": "nodemon --ext ts,js,json,env --exec \"pnpm ts-node src/index.ts\"",
"docker:build": "docker build --tag api3/airseeker:latest --file docker/Dockerfile .",
"docker:build:amd64": "docker buildx build --platform linux/amd64 --tag api3/airseeker:latest --file docker/Dockerfile .",
"docker:build": "docker build --no-cache --tag api3/airseeker:latest --file docker/Dockerfile .",
"docker:build:amd64": "docker buildx build --no-cache --platform linux/amd64 --tag api3/airseeker:latest --file docker/Dockerfile .",
"docker:run": "docker run -it --init --volume $(pwd)/config:/app/config --network host --env-file .env --rm api3/airseeker:latest",
"eslint:check": "eslint --report-unused-disable-directives --cache --ext js,ts . --max-warnings 0",
"eslint:fix": "pnpm run eslint:check --fix",
Expand Down

0 comments on commit 8e33b10

Please sign in to comment.