diff options
author | Fengjin Chen <c1871653365@gmail.com> | 2021-08-02 01:13:42 +0800 |
---|---|---|
committer | chenfengjin <1871653365@qq.coom> | 2021-08-02 12:40:22 +0800 |
commit | 7b300f556ca6415afb80d3dfbbff2ec2aa93d4ca (patch) | |
tree | 2e9e390aeee82fb25016982150304ab1d20896de | |
parent | 964fb3ca768756fbc58d1d9312c53886964ae608 (diff) |
Add -y to install docker-ce when build image
-rw-r--r-- | images/default/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/default/Dockerfile b/images/default/Dockerfile index 5f652f2c3..4384d6271 100644 --- a/images/default/Dockerfile +++ b/images/default/Dockerfile @@ -15,7 +15,7 @@ RUN add-apt-repository \ "deb https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" -RUN apt-get install docker-ce-cli +RUN apt-get -y install docker-ce-cli # Install gcloud. RUN curl https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-289.0.0-linux-x86_64.tar.gz | \ |