Reputation: 1204
After the successful pushing of a docker image, I can see some repo has "Dockerfile" section while some have not.
How to add "Dockerfile" to own repo?
Upvotes: 1
Views: 257
Reputation: 19260
To do this, you need to set up an automated build of a code repository. See the documentation to learn how to set up automated builds.
The basic steps are:
Dockerfile
in the repository. You can configure the location of this file and the image tags.Dockerfile
listed on DockerHub.Upvotes: 2