From c631f5636c1f32aa07f896b7aea538497b403765 Mon Sep 17 00:00:00 2001 From: Jessica Way Date: Wed, 30 Sep 2020 15:24:08 -0400 Subject: [PATCH] Remove deprecated syntax (#1585) --- Dockerfile | 2 +- build_push_docker.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e1b9a1e1fb..9bc99df65b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG jar_name=picard.jar # Install ant, git for building RUN apt-get update && \ - apt-get --no-install-recommends install -y --force-yes \ + apt-get --no-install-recommends install -y \ git \ r-base \ ant && \ diff --git a/build_push_docker.sh b/build_push_docker.sh index 825aeeb689..86e74553eb 100755 --- a/build_push_docker.sh +++ b/build_push_docker.sh @@ -21,5 +21,5 @@ echo # (optional) move to a new line if [[ $REPLY =~ ^[Yy]$ ]] then docker build -t ${PICARD_CLOUD_TAG} --build-arg build_command=cloudJar --build-arg jar_name=picardcloud.jar . - gcloud docker -- push ${PICARD_CLOUD_TAG} + docker push ${PICARD_CLOUD_TAG} fi