From 5c1441ecec7c570d6024531591a711a6c61893ab Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Wed, 2 Dec 2020 19:21:17 -0800 Subject: [PATCH] Update b10.md --- labs/b10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/b10.md b/labs/b10.md index 673ff478..dbc70e82 100644 --- a/labs/b10.md +++ b/labs/b10.md @@ -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