Skip to content

Commit fcd8203

Browse files
authoredJul 24, 2020
Merge pull request operator-framework#399 from ecordell/static
Remove unneeded static dependencies
2 parents e2cd26b + 29904c1 commit fcd8203

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM openshift/origin-release:golang-1.14 as builder
22

33
RUN yum update -y && \
4-
yum install -y make git sqlite glibc-static openssl-static zlib-static && \
4+
yum install -y sqlite && \
55
yum groupinstall -y "Development Tools"
66

77
ENV GOPATH /go

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ clean:
7272

7373
.PHONY: e2e
7474
e2e:
75-
$(GO) run github.com/onsi/ginkgo/ginkgo --v --randomizeAllSpecs --randomizeSuites --race ./test/e2e
75+
$(GO) run github.com/onsi/ginkgo/ginkgo --v --randomizeAllSpecs --randomizeSuites --race $(TAGS) ./test/e2e

0 commit comments

Comments
 (0)
Please sign in to comment.