Skip to content

Commit

Permalink
get rid of --process-dependency-links (lukalabs#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
khalman-m authored Feb 26, 2019
1 parent 3759ac4 commit 68b0f6c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN pip --no-cache-dir install -U pip

# setup cakechat and install dependencies
RUN git clone https://github.com/lukalabs/cakechat.git /root/cakechat
RUN pip --no-cache-dir install -r /root/cakechat/requirements.txt --process-dependency-links
RUN pip --no-cache-dir install -r /root/cakechat/requirements.txt

# setup Tensorboard for monitoring the training process
RUN pip install tensorflow-tensorboard==$TENSORBOARD_VERSION tensorflow==$TENSORFLOW_VERSION
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ RUN apt-get update && apt-get install -y \

# setup cakechat and install dependencies
RUN git clone https://github.com/lukalabs/cakechat.git /root/cakechat
RUN pip --no-cache-dir install -r /root/cakechat/requirements.txt --process-dependency-links
RUN pip --no-cache-dir install -r /root/cakechat/requirements.txt

# setup Tensorboard for monitoring the training process
RUN pip install tensorflow-tensorboard==$TENSORBOARD_VERSION tensorflow==$TENSORFLOW_VERSION
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile3.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN pip3 --no-cache-dir install -U pip

# setup cakechat and install dependencies
RUN git clone https://github.com/lukalabs/cakechat.git /root/cakechat
RUN pip3 --no-cache-dir install -r /root/cakechat/requirements.txt --process-dependency-links
RUN pip3 --no-cache-dir install -r /root/cakechat/requirements.txt

# setup Tensorboard for monitoring the training process
RUN pip3 install tensorflow-tensorboard==$TENSORBOARD_VERSION tensorflow==$TENSORFLOW_VERSION
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile3.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ RUN apt-get update && apt-get install -y \

# setup cakechat and install dependencies
RUN git clone https://github.com/lukalabs/cakechat.git /root/cakechat
RUN pip3 --no-cache-dir install -r /root/cakechat/requirements.txt --process-dependency-links
RUN pip3 --no-cache-dir install -r /root/cakechat/requirements.txt

# setup Tensorboard for monitoring the training process
RUN pip3 install tensorflow-tensorboard==$TENSORBOARD_VERSION tensorflow==$TENSORFLOW_VERSION
Expand Down

0 comments on commit 68b0f6c

Please sign in to comment.