加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 496 Bytes
一键复制 编辑 原始数据 按行查看 历史
zicla 提交于 2019-08-14 02:04 . Release docker version.
# use golang 1.12
FROM golang:1.12
# maintainer. Author's name and email.
MAINTAINER eyeblue "eyebluecn@126.com"
# work directory.
WORKDIR /data
# Copy this project to /data
COPY . /data
# in order to make docker stateless. Prepare a volumn
VOLUME /data/build/matter
# proxy
ENV GOPROXY=https://goproxy.io
# prepare the config file
RUN go build -mod=readonly \
&& cp -r /data/tank /data/build
# use 6010 as default.
EXPOSE 6010
# tank as execute file.
ENTRYPOINT ["/data/build/tank"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化