You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
The container upgrade currently uses --no-cache option of docker build to update DVC versions. Although most of the layers are common across containers, they are not reused, in order to upgrade the DVC version.
We need a better way to handle DVC version dependency. For example, build-all.zsh script can use the output of curl -s https://api.github.com/repos/iterative/dvc/releases/latest command to check if there is a new version and use this as a --build-arg. That way we can be sure that the intact layers are reused, both from previous ones and the current one, and DVC version is upgraded when necessary.
The text was updated successfully, but these errors were encountered:
The container upgrade currently uses
--no-cache
option ofdocker build
to update DVC versions. Although most of the layers are common across containers, they are not reused, in order to upgrade the DVC version.We need a better way to handle DVC version dependency. For example,
build-all.zsh
script can use the output ofcurl -s https://api.github.com/repos/iterative/dvc/releases/latest
command to check if there is a new version and use this as a--build-arg
. That way we can be sure that the intact layers are reused, both from previous ones and the current one, and DVC version is upgraded when necessary.The text was updated successfully, but these errors were encountered: