fix(docker): fix env path in dockerfile

This commit is contained in:
Han Xiao 2020-10-28 20:23:38 +01:00 committed by GitHub
parent c39c3ccfbe
commit bdc5b5c2c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ MAINTAINER leonwanghui <leon.wanghui@huawei.com>
# Set env
ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5
ENV PATH /usr/local/bin:$PATH
ENV PATH /usr/local/bin:/root/.local/bin:$PATH
# Install base tools
RUN apt update \