Containerize your golang project using docker
In this tutorial we will see use of docker using simple golang project
following is the simple golang program :
package main
import(
"fmt"
"log"
"net/http"
"html"
)
func main() {
http.HandleFunc("/",func(w http.ResponseWriter,...
shubhamjagtapdevops.hashnode.dev2 min read