diff --git a/beginners/Writing-Dockerfile.md b/beginners/Writing-Dockerfile.md index c362b5bca..3fb322cd0 100644 --- a/beginners/Writing-Dockerfile.md +++ b/beginners/Writing-Dockerfile.md @@ -28,7 +28,7 @@ $ vi Dockerfile #### Setting a Base Image using FROM keyword ``` -FROM ubuntu +FROM ubuntu:24.10 ``` Thus, our image would start building taking base as Ubuntu. @@ -85,7 +85,7 @@ Benefit of this is that user can choose some other file to run with the same app So, our overall Dockerfile currently looks like this: ``` -FROM ubuntu +FROM ubuntu:24.10 MAINTAINER Prashansa Kulshrestha RUN apt-get update RUN apt-get install -y python