We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d2c709 commit 5385a91Copy full SHA for 5385a91
Dockerfile
@@ -1,6 +1,9 @@
1
FROM continuumio/anaconda3:latest
2
3
-RUN apt-get update && apt-get install -y build-essential && \
+ # Use a fixed apt-get repo to stop intermittent failures due to flaky httpredir connections,
4
+ # as described by Lionel Chan at http://stackoverflow.com/a/37426929/5881346
5
+RUN sed -i "s/httpredir.debian.org/debian.uchicago.edu/" /etc/apt/sources.list && \
6
+ apt-get update && apt-get install -y build-essential && \
7
cd /usr/local/src && \
8
# https://github.com/tensorflow/tensorflow/issues/64#issuecomment-155270240
9
# Why does this work, when `pip install tensorflow` fails? It is a mystery
0 commit comments