diff --git a/katacoda/get-started/06-experiments/Dockerfile b/katacoda/get-started/06-experiments/Dockerfile index 27ca5a8..d5fe878 100644 --- a/katacoda/get-started/06-experiments/Dockerfile +++ b/katacoda/get-started/06-experiments/Dockerfile @@ -3,10 +3,8 @@ FROM dvcorg/doc-katacoda:base ARG RELEASE_HASH RUN RELEASE_HASH=${RELEASE_HASH} \ git clone \ - https://github.com/iterative/example-get-started \ - --branch 8-evaluation \ - && git -C /root/example-get-started \ - checkout -b katacoda-project + https://github.com/iterative/dvc-get-started-mnist /root/example-get-started/ \ + && git -C /root/example-get-started checkout -b katacoda-project WORKDIR /root/example-get-started @@ -17,17 +15,11 @@ RUN RELEASE_HASH=${RELEASE_HASH} \ python3 \ python3-pip \ python-is-python3 \ - && pip3 install -r src/requirements.txt + && pip3 install -r requirements.txt -RUN RELEASE_HASH=${RELEASE_HASH} \ - dvc pull \ - && head -n 12000 data/data.xml > data/data.xml.1 \ - && mv data/data.xml.1 data/data.xml \ - && dvc add data/data.xml \ - && git add . \ - && git commit -m "Modified for Katacoda Experiments Scenario" \ - && dvc gc -f --workspace +# RUN RELEASE_HASH=${RELEASE_HASH} \ +# dvc pull COPY start.sh /root/start.sh