Skip to content

Commit

Permalink
fix(iin): changed the way to install dependencies in dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Rudransh Sharma <rudranshsharma@Rudranshs-MacBook-Pro.local>
  • Loading branch information
rudranshsharma123 authored and Rudransh Sharma committed Jun 22, 2023
2 parents 8ae2218 + e52942e commit 89c9d3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@
"lint": "eslint '*/*/src/**/*.{js,ts}' --quiet --fix && cspell \"*/*/src/**/*.{js,ts}\"",
"tsc": "tsc --build --verbose",
"codegen": "lerna run codegen",
"precodegen": "yarn codegen:warmup-v5.2.1 & yarn codegen:warmup-v6.3.0",
"codegen:warmup-v5.2.1": "yarn openapi-generator-cli version-manager set 5.2.1 && rm openapitools.json",
"codegen:warmup-v6.3.0": "yarn openapi-generator-cli version-manager set 6.3.0 && rm openapitools.json",
"precodegen": "npm-run-all --parallel --aggregate-output --continue-on-error --print-label --print-name codegen:warmup-*",
"postcodegen": "rm --force --verbose ./openapitools.json",
"codegen:warmup-v5.2.1": "yarn openapi-generator-cli version-manager set 5.2.1",
"codegen:warmup-v6.3.0": "yarn openapi-generator-cli version-manager set 6.3.0",
"watch-other": "lerna run --parallel watch",
"watch-tsc": "tsc --build --watch",
"watch": "run-p -r watch-*",
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/fabric-all-in-one/Dockerfile_v1.4.x
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# We need to use the older, more stable v18 here because of
# https://github.com/docker-library/docker/issues/170
FROM docker:20.10.17
FROM docker:24.0.2-dind

ARG FABRIC_VERSION=1.4.8
ARG CA_VERSION=1.4.9
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/fabric-all-in-one/Dockerfile_v2.x
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# We need to use the older, more stable v18 here because of
# https://github.com/docker-library/docker/issues/170
FROM docker:20.10.3-dind
FROM docker:24.0.2-dind

ARG FABRIC_VERSION=2.2.0
ARG CA_VERSION=1.4.9
Expand Down

0 comments on commit 89c9d3e

Please sign in to comment.