From 9bb186ca0feac7a5cf556c4de84e81bc263c3f1d Mon Sep 17 00:00:00 2001 From: Rob Becker Date: Fri, 22 Apr 2022 20:10:53 +0000 Subject: [PATCH] Replace deprecated commands with new dart commands --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51e7778..71103d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,12 @@ WORKDIR /build # grab source COPY . /build/ -# pub get +# dart pub get ARG BUILD_ID ARG GIT_COMMIT ARG GIT_TAG ARG GIT_BRANCH -RUN pub get +RUN dart pub get FROM scratch