diff options
author | 2019-12-11 14:50:39 +0000 | |
---|---|---|
committer | 2019-12-11 14:50:39 +0000 | |
commit | f4017d53f1794571bbd0567e615aa96c3c2656f4 (patch) | |
tree | 21cd2a66861d8d531b30c49ca7a1b4aa48b91a98 /docker/barometer-ves/Dockerfile | |
parent | a97b5789333569ae4474ee43fb76b65992839f1b (diff) | |
parent | 65f5711d5ec9c8236583202a3371dabda07486d3 (diff) |
Merge "Py2 to Py3 migration updates for VES App and the Dockerfile"
Diffstat (limited to 'docker/barometer-ves/Dockerfile')
-rw-r--r-- | docker/barometer-ves/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/barometer-ves/Dockerfile b/docker/barometer-ves/Dockerfile index e36ef848..27b3cbd3 100644 --- a/docker/barometer-ves/Dockerfile +++ b/docker/barometer-ves/Dockerfile @@ -18,9 +18,9 @@ RUN yum update -y && \ git \ nc -RUN yum install -y python-pip -RUN pip install pyyaml \ - kafka-python +RUN yum install -y python3 python3-pip +RUN pip3 install pyyaml \ + kafka-python ENV VES_DIR /opt/ves |