You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 基础镜像
|
|
FROM alpine:3.16.1
|
|
|
|
# 作者信息
|
|
LABEL MAINTAINER="xiaoqidun@gmail.com"
|
|
|
|
# 复制程序
|
|
COPY gocos /bin/gocos
|
|
|
|
# 启动命令
|
|
ENTRYPOINT /bin/gocos
|