You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This image uses `ubuntu` as the base image. `CMD` command defines the command that needs to run. It provides a different entry point of `/bin/echo` and gives the argument "`hello world`".
43
43
44
-
Build the image:
44
+
Build the image using the command:
45
+
46
+
docker image build . -t helloworld
47
+
48
+
`.` in this command is the context for `docker image build`. `-t` adds a tag to the image.
0 commit comments