Skip to content

Commit

Permalink
Use latest image while building
Browse files Browse the repository at this point in the history
  • Loading branch information
Dsantra92 committed Mar 21, 2023
1 parent 23a788d commit 7ef40b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/image/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
}
},

"postCreateCommand": "bash .devcontainer/post_create_commands.sh"
"postCreateCommand": "bash .devcontainer/post_create_commands.sh",
"initializeCommand": "docker pull unifyai/ivy:latest"

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
Expand Down
3 changes: 2 additions & 1 deletion .devcontainer/image_gpu/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

"runArgs": ["--gpus","all"],

"postCreateCommand": "bash .devcontainer/post_create_commands.sh"
"postCreateCommand": "bash .devcontainer/post_create_commands.sh",
"initializeCommand": "docker pull unifyai/ivy:latest"

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
Expand Down

0 comments on commit 7ef40b9

Please sign in to comment.