From adba88b218edbb3f3bd8044dc963f8ca0901d6c6 Mon Sep 17 00:00:00 2001 From: Peter Zhokhov Date: Fri, 11 Oct 2019 17:13:43 -0700 Subject: [PATCH] add quote marks to tensorflow < 2 to avoid bash logic --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a380c70..3cb28c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ WORKDIR $CODE_DIR/baselines # Clean up pycache and pyc files RUN rm -rf __pycache__ && \ find . -name "*.pyc" -delete && \ - pip install tensorflow<2 && \ + pip install 'tensorflow < 2' && \ pip install -e .[test]