Skip to content

Commit f1f17d6

Browse files
authored
Merge pull request #24 from uc-cdis/feat/dependencies
Feat/dependencies
2 parents 040e566 + a7dee90 commit f1f17d6

File tree

1,180 files changed

+264358
-156621
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,180 files changed

+264358
-156621
lines changed

Dockerfile

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
FROM golang:1.14 as build-deps
22

3-
RUN go get -tags k8s.io/client-go/kubernetes \
4-
k8s.io/apimachinery/pkg/apis/meta/v1 \
5-
k8s.io/api/core/v1 \
6-
k8s.io/api/batch/v1 \
7-
k8s.io/client-go/tools/clientcmd \
8-
k8s.io/client-go/rest \
9-
k8s.io/klog
10-
113
# Build static binary
124
RUN mkdir -p /go/src/github.com/uc-cdis/ssjdispatcher
135
WORKDIR /go/src/github.com/uc-cdis/ssjdispatcher
146
ADD . .
7+
158
RUN go build -ldflags "-linkmode external -extldflags -static" -o bin/ssjdispatcher
169

1710
# Set up small scratch image, and copy necessary things over

0 commit comments

Comments
 (0)