Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 20a3c7f

Browse files
authored
Fix b10 Dockerfile to install python3-pip (#279)
Fix b10 Dockerfile to install python3-pip
2 parents ba901d6 + 5c1441e commit 20a3c7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labs/b10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ FROM fedora:latest
9797
9898
# Install Python with yum (Fedora's Package Manager)
9999
# Install required Python packages
100-
RUN yum update -y && yum install python3 && \
100+
RUN yum update -y && yum install -y python3 python3-pip && \
101101
python3 -m pip install pyfiglet termcolor
102102
103103
# Add the missile.py file to the final image

0 commit comments

Comments
 (0)