From d08177d2c2e7ac475412fc23e6d08896903b3136 Mon Sep 17 00:00:00 2001 From: "KUI\\ahkui" Date: Sun, 20 May 2018 19:22:30 +0800 Subject: [PATCH] fix wrong spelling --- workspace/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index bba085b8..287f07c3 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -641,8 +641,8 @@ ARG INSTALL_PYTHON=false RUN if [ ${INSTALL_PYTHON} = true ]; then \ apt-get -y install python python-pip python-dev build-essential \ - && pythom -m pip install --upgrade pip \ - && pythom -m pip install --upgrade virtualenv \ + && python -m pip install --upgrade pip \ + && python -m pip install --upgrade virtualenv \ ;fi ###########################################################################