Skip to content

Commit 7c09130

Browse files
authored
fix image build (#6)
1 parent 5532bde commit 7c09130

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ all: build
88
build: build-extension
99

1010
.PHONY: build-extension
11-
build-extension: fixcodec
12-
$(COMMONENVVAR) $(BUILDENVVAR) go build -mod vendor -ldflags '-w' -o bin/pytorch-operator-extension cmd/main.go
11+
build-extension:
12+
$(COMMONENVVAR) $(BUILDENVVAR) go build -ldflags '-w' -o bin/pytorch-operator-extension cmd/main.go
1313

1414
.PHONY: fixcodec
1515
hack/fix-codec-factory.sh

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
k8s.io/code-generator v0.21.2
1111
k8s.io/klog v1.0.0
1212
k8s.io/klog/v2 v2.8.0
13-
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7
13+
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
1414
k8s.io/sample-controller v0.21.2
1515
)
1616

0 commit comments

Comments
 (0)