From c93e179aa1f93c08bcf8b86f7c4d8e3f2e080cec Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 7 Dec 2022 00:34:48 -0500 Subject: [PATCH] Fix typo --- Dockerfile.gpu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.gpu b/Dockerfile.gpu index eafcfda..293c8c0 100644 --- a/Dockerfile.gpu +++ b/Dockerfile.gpu @@ -5,7 +5,7 @@ RUN apt-get install -y build-essential curl python3 python3-pip python3-venv # Inorder to run pip3.6, run it the following way `python3.6 -m pip` # Update Python & Install wheel -RUN python3 -m pip install pip --upgrade && ython3 -m pip install wheel +RUN python3 -m pip install pip --upgrade && python3 -m pip install wheel FROM python-ubuntu