synchronization

This commit is contained in:
2025-08-25 16:04:00 +08:00
commit 33f9b3ce46
1951 changed files with 854396 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM golang:1.10-alpine as build
WORKDIR /go/src/github.com/AliyunContainerService/gpushare-scheduler-extender
COPY . .
RUN go build -o /go/bin/gpushare-sche-extender cmd/*.go
FROM alpine
COPY --from=build /go/bin/gpushare-sche-extender /usr/bin/gpushare-sche-extender
CMD ["gpushare-sche-extender"]