6 Star 14 Fork 9

Crane/crane

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 855 Bytes
一键复制 编辑 原始数据 按行查看 历史
zsnmwy 提交于 2022-08-09 21:52 +08:00 . Fix: ci build arm images
ARG PKGNAME
# Build the manager binary
FROM golang:1.17.2-alpine as builder
ARG LDFLAGS
ARG PKGNAME
ARG BUILD
WORKDIR /go/src/github.com/gocrane/crane
# Add build deps
RUN apk add build-base
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN if [[ "${BUILD}" != "CI" ]]; then go env -w GOPROXY=https://goproxy.io,direct; fi
RUN go env
RUN go mod download
# Copy the go source
COPY pkg pkg/
COPY cmd cmd/
# Build
RUN env
RUN go build -ldflags="${LDFLAGS}" -a -o ${PKGNAME} /go/src/github.com/gocrane/crane/cmd/${PKGNAME}/main.go
FROM alpine:3.13.5
RUN apk add --no-cache tzdata
WORKDIR /
ARG PKGNAME
COPY --from=builder /go/src/github.com/gocrane/crane/${PKGNAME} .
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gocrane/crane.git
git@gitee.com:gocrane/crane.git
gocrane
crane
crane
main

搜索帮助