Finish docker.

This commit is contained in:
zicla
2019-05-24 04:54:54 +08:00
parent 60eac561bb
commit db891c7342
3 changed files with 38 additions and 27 deletions

View File

@ -1,35 +1,27 @@
# 使用1.9的golang作为母镜像
FROM golang:1.9
# use golang 1.12
FROM golang:1.12
# 维护者信息,也就是作者的姓名和邮箱
# maintainer. Author's name and email.
MAINTAINER eyeblue "eyebluecn@126.com"
# 指定工作目录就是 tank。工作目录指的就是以后 每层构建的当前目录 。
WORKDIR $GOPATH/src/tank
# work directory.
WORKDIR /data
# 将tank项目下的所有文件移动到golang镜像中去
COPY . $GOPATH/src/tank
# Copy this project to /data
COPY . /data
# 这里为了维持docker无状态性准备数据卷上传文件目录
VOLUME /data/matter
# in order to make docker stateless. Prepare a volumn
VOLUME /data/build/matter
# 将文件存放的位置指定到挂载的这个点。
# golang.org库国内无法下载这里从我准备的github中clone
# github.com的库可以直接通过`go get`命令下载
# `go install tank`是对项目进行打包
# `cp`是将项目需要的html等文件移动到可执行文件的目录下。
RUN echo '{"ServerPort": 6010,"MatterPath": "/data/matter"}' > $GOPATH/src/tank/build/conf/tank.json \
&& git clone https://github.com/eyebluecn/golang.org.git $GOPATH/src/golang.org \
&& go get github.com/disintegration/imaging \
&& go get github.com/json-iterator/go \
&& go get github.com/go-sql-driver/mysql \
&& go get github.com/jinzhu/gorm \
&& go get github.com/nu7hatch/gouuid \
&& go install tank \
&& cp -r $GOPATH/src/tank/build/* $GOPATH/bin
# proxy
ENV GOPROXY=https://goproxy.io
# 声明运行时容器提供服务端口这只是一个声明。默认是6010端口
# prepare the config file
RUN go build -mod=readonly \
&& cp -r /data/tank /data/build
# use 6010 as default.
EXPOSE 6010
# tank作为执行文件 启动这个容器就会去执行 `/go/bin/tank`
ENTRYPOINT ["/go/bin/tank"]
# tank as execute file.
ENTRYPOINT ["/data/build/tank"]