diff --git a/Days/day45.md b/Days/day45.md index 428e664..cc053a5 100644 --- a/Days/day45.md +++ b/Days/day45.md @@ -59,7 +59,7 @@ The following table shows some of the dockerfile statements we will be using or | COPY | To copy over files or directories from a specific location. | | ADD | As COPY, but also able to handle remote URLs and unpack compressed files. | | ENTRYPOINT | Command that will always be executed when the container starts. If not specified, the default is /bin/sh -c | -| .md | Arguments passed to the entrypoint. If ENTRYPOINT is not set (defaults to /bin/sh -c), the .mdwill be the commands the container executes. | +| CMD | Arguments passed to the entrypoint. If ENTRYPOINT is not set (defaults to /bin/sh -c), the CMD will be the commands the container executes. | | EXPOSE | To define which port through which to access your container application. | | LABEL | To add metadata to the image. |