From 8f2c1e842a1da55bf4ed7cf4cc3252c8001b0580 Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Tue, 25 Aug 2020 16:09:08 +0200 Subject: [PATCH] Explicitly name repository clone target in Dockerfiles --- Dockerfile.build.tmpl | 2 +- Dockerfile.train.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.build.tmpl b/Dockerfile.build.tmpl index c176acd0..f6af29f5 100644 --- a/Dockerfile.build.tmpl +++ b/Dockerfile.build.tmpl @@ -113,7 +113,7 @@ RUN echo "build --spawn_strategy=standalone --genrule_strategy=standalone" \ WORKDIR / -RUN git clone --recursive $DEEPSPEECH_REPO +RUN git clone --recursive $DEEPSPEECH_REPO DeepSpeech WORKDIR /DeepSpeech RUN git checkout $DEEPSPEECH_SHA RUN git submodule sync tensorflow/ diff --git a/Dockerfile.train.tmpl b/Dockerfile.train.tmpl index e3b47795..fd0e9fa6 100644 --- a/Dockerfile.train.tmpl +++ b/Dockerfile.train.tmpl @@ -31,7 +31,7 @@ RUN apt-get install -y --no-install-recommends libopus0 libsndfile1 RUN rm -rf /var/lib/apt/lists/* WORKDIR / -RUN git clone $DEEPSPEECH_REPO +RUN git clone $DEEPSPEECH_REPO DeepSpeech WORKDIR /DeepSpeech RUN git checkout $DEEPSPEECH_SHA