Skip to content

Commit

Permalink
Fix b10 Dockerfile to install python3-pip (#279)
Browse files Browse the repository at this point in the history
Fix b10 Dockerfile to install python3-pip
  • Loading branch information
aeolyus authored Dec 3, 2020
2 parents ba901d6 + 5c1441e commit 20a3c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labs/b10.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ FROM fedora:latest
# Install Python with yum (Fedora's Package Manager)
# Install required Python packages
RUN yum update -y && yum install python3 && \
RUN yum update -y && yum install -y python3 python3-pip && \
python3 -m pip install pyfiglet termcolor
# Add the missile.py file to the final image
Expand Down

0 comments on commit 20a3c7f

Please sign in to comment.