Fix typo
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Tyler 2022-12-07 00:34:48 -05:00
parent cf59c1ffcd
commit c93e179aa1
1 changed files with 1 additions and 1 deletions

View File

@ -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