Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions beginners/Writing-Dockerfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
Loading