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
🔊 If you have feedback for me, please let me know by commenting in this issue.
⭐️ Consider starring the project to let me know that you use it.
❤️ Thank you!
The text was updated successfully, but these errors were encountered:
Hi @aurotripathy! Great question- to build from the dockerfile, in general you will want to run the command from the directory where the Dockerfile is by running something like this:
docker build -t my-first-helloworld:latest .
The -t is the tag command to tag the newly built image, and can be tagged with whatever name you want to give it. Then, you should be able to run the image locally by saying docker run:
docker run -p 80:80/tcp "my-first-helloworld:latest"
🔊 If you have feedback for me, please let me know by commenting in this issue.
⭐️ Consider starring the project to let me know that you use it.
❤️ Thank you!
The text was updated successfully, but these errors were encountered: