Docker自制golang版helloworld

ubuntu@shenzhen:~ $ cat hello.go
package main

import "fmt"

func main() {
    fmt.Println("hello world")
}

ubuntu@shenzhen:~ $ go  build hello.go
ubuntu@shenzhen:~ $ ./hello 
hello world
ubuntu@shenzhen:~ $ mkdir gohello
ubuntu@shenzhen:~ $ cp hello gohello/
ubuntu@shenzhen:~ $ cd  gohello/
ubuntu@shenzhen:~/gohello $ ls
hello
ubuntu@shenzhen:~/gohello $ vim Dockerfile
ubuntu@shenzhen:~/gohello $ docker build -t myhello:latest .
Sending build context to Docker daemon  2.012MB
Step 1/3 : FROM scratch
 ---> 
Step 2/3 : COPY hello /
 ---> ca4b658b1549
Step 3/3 : CMD ["/hello"]
 ---> Running in 2ebeeef54814
Removing intermediate container 2ebeeef54814
 ---> bd91ff0fe143
Successfully built bd91ff0fe143
Successfully tagged myhello:latest
ubuntu@shenzhen:~/gohello $ docker image  ls
REPOSITORY                                                  TAG                 IMAGE ID            CREATED             SIZE
myhello                                                     latest              bd91ff0fe143        4 seconds ago       2.01MB
ubuntu@shenzhen:~/gohello $ docker container run myhello
hello world
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值