Go로 hello 찍기 hello.go package main import "fmt" func main(){ fmt.Println("hello world") } go run hello.go > docker run --rm -v "$PWD":/app golang:latest go run /app/hello.go hello world DevLogs/Etc 2020.10.24