1. 新增了阿里的源地址

2. docker build的时候 go get -d ./... 这个编译不过去 所以注释掉了
This commit is contained in:
xewk 2018-01-06 14:18:29 +08:00
parent 4e4035b27a
commit e8b38500a6

View File

@ -1,18 +1,19 @@
FROM golang:1.8.3-alpine3.6
# add china aliyun repo 新增了 alpine 3.6 的阿里源
RUN cp /etc/apk/repositories /etc/apk/repositories.back && \
echo "https://mirrors.aliyun.com/alpine/v3.6/main/" > /etc/apk/repositories && \
echo "https://mirrors.aliyun.com/alpine/v3.6/community/" >> /etc/apk/repositories
RUN apk add --update bash git make gcc g++
ADD . /go/src/github.com/lifei6671/mindoc
WORKDIR /go/src/github.com/lifei6671/mindoc
RUN chmod +x start.sh
RUN go get -d ./... && \
go get github.com/mitchellh/gox && \
#RUN go get -d ./... && \ # 这行 docker build 不过去,所以注释掉了
RUN go get github.com/mitchellh/gox && \
gox -os "windows linux darwin" -arch amd64
CMD ["./start.sh"]