2 Star 0 Fork 0

mirrors_airbnb/k8s-webhook-handler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM golang:1.12 AS build-env
ENV CGO_ENABLED=0
WORKDIR /src
COPY go.mod go.sum ./
RUN go mod tidy
ENV GOLANGCI_LINT_VERSION=v1.22.0
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b $(go env GOPATH)/bin $GOLANGCI_LINT_VERSION
COPY . .
RUN golangci-lint run --timeout 30m
RUN go build ./... && go test ./... && go install ./...
FROM alpine:3.6
RUN apk add --update ca-certificates git openssh-client \
&& addgroup -g 1000 user \
&& adduser -u 1000 -D user -G user \
&& ssh-keyscan github.com > /etc/ssh/ssh_known_hosts
USER user
COPY --from=0 /go/bin/* /usr/bin/
ENTRYPOINT [ "webhook" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_airbnb/k8s-webhook-handler.git
git@gitee.com:mirrors_airbnb/k8s-webhook-handler.git
mirrors_airbnb
k8s-webhook-handler
k8s-webhook-handler
master

搜索帮助