Skip to content

Commit fc219fa

Browse files
committed
Remove nonexistent group from Dockerfile
This yum group does not exist on RHEL 7 nor 8. While RHEL 7's yum just ignores it, RHEL 8's dnf raises an error.
1 parent 24965bb commit fc219fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM openshift/origin-release:golang-1.14 as builder
22

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

77
ENV GOPATH /go
88
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH

0 commit comments

Comments
 (0)