From abf3da8a44e349ef56e59c14137bb6aafcd6241a Mon Sep 17 00:00:00 2001 From: Yoshiki Nagasaki Date: Mon, 15 Apr 2024 00:43:50 +0900 Subject: [PATCH] fix(example): add installation of python-etcd in Pytorch example (#2064) Signed-off-by: champon1020 --- examples/pytorch/elastic/imagenet/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/pytorch/elastic/imagenet/Dockerfile b/examples/pytorch/elastic/imagenet/Dockerfile index 25ecc49577..01a7aae532 100644 --- a/examples/pytorch/elastic/imagenet/Dockerfile +++ b/examples/pytorch/elastic/imagenet/Dockerfile @@ -10,6 +10,9 @@ WORKDIR /workspace RUN apt-get -q update && apt-get -q install -y wget unzip RUN wget -q http://cs231n.stanford.edu/tiny-imagenet-200.zip && unzip -q tiny-imagenet-200.zip -d data && rm tiny-imagenet-200.zip +# install dependent library +RUN pip install --upgrade pip && pip install python-etcd + COPY examples/pytorch/elastic/imagenet/ ./examples USER root