From d0cc7615f9e284e9ae3ac022490c39aceed931c6 Mon Sep 17 00:00:00 2001 From: NickSwainston Date: Mon, 8 Apr 2024 13:45:42 +0800 Subject: [PATCH] Add git lfs commands to pull actuall templates --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c42d25..1efe661 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ FROM ubuntu as intermediate RUN apt-get update RUN apt-get install -y \ git \ + git-lfs \ openssh-client # Authorize SSH Host @@ -25,7 +26,9 @@ RUN touch /root/.ssh/known_hosts # RUN ssh -T git@github.com WORKDIR /root -RUN git clone git@github.com:OZGrav/meertime_ephemerides_and_templates.git +RUN git clone git@github.com:OZGrav/meertime_ephemerides_and_templates.git && \ + cd meertime_ephemerides_and_templates && \ + git lfs pull # this is our second build stage, it will be the final image