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