diff --git a/python/add_data.sh b/python/add_data.sh index c8c01aa..ba0a23d 100755 --- a/python/add_data.sh +++ b/python/add_data.sh @@ -456,14 +456,14 @@ read_github_token() { # from the OpenDRR/model-factory repository get_model_factory_scripts() { # TODO: Make this more robust - # curl -L -o model-factory.tar.gz https://github.com/OpenDRR/model-factory/archive/refs/tags/v1.4.2.tar.gz - # tar -xf model-factory.tar.gz - RUN git clone https://github.com/OpenDRR/model-factory.git --branch updates_june2022 --depth 1 || (cd model-factory ; RUN git pull) + curl -L -o model-factory.tar.gz https://github.com/OpenDRR/model-factory/archive/refs/tags/v1.4.3.tar.gz + tar -xf model-factory.tar.gz + # RUN git clone https://github.com/OpenDRR/model-factory.git --branch updates_june2022 --depth 1 || (cd model-factory ; RUN git pull) # Copy model-factory scripts to working directory # TODO: Find ways to keep these scripts in their place without copying them all to WORKDIR - # RUN cp model-factory-1.4.2/scripts/*.* . - RUN cp model-factory/scripts/*.* . + RUN cp model-factory-1.4.3/scripts/*.* . + # RUN cp model-factory/scripts/*.* . #rm -rf model-factory }