cli/command/registry: remove deprecated io/ioutil

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2022-02-25 15:42:07 +01:00
parent f61aab59f7
commit 3b3a0b898f
+2 -2
View File
@@ -3,7 +3,7 @@ package registry
import (
"context"
"fmt"
"io/ioutil"
"io"
"strings"
"github.com/docker/cli/cli"
@@ -84,7 +84,7 @@ func verifyloginOptions(dockerCli command.Cli, opts *loginOptions) error {
return errors.New("Must provide --username with --password-stdin")
}
contents, err := ioutil.ReadAll(dockerCli.In())
contents, err := io.ReadAll(dockerCli.In())
if err != nil {
return err
}