1 Star 0 Fork 0

橙子/micro

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 390 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM alpine:latest
RUN apk --no-cache add make git go gcc libtool musl-dev
# Configure Go
ENV GOROOT /usr/lib/go
ENV GOPATH /go
ENV PATH /go/bin:$PATH
RUN mkdir -p ${GOPATH}/src ${GOPATH}/bin
COPY . /
RUN make
RUN apk add ca-certificates && \
rm -rf /var/cache/apk/* /tmp/* && \
[ ! -e /etc/nsswitch.conf ] && echo 'hosts: files dns' > /etc/nsswitch.conf
ENTRYPOINT ["/micro"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xuchengzhi/micro.git
[email protected]:xuchengzhi/micro.git
xuchengzhi
micro
micro
master

搜索帮助