fix(ci): Docker build for issue 1837 (#2095)
* fix: Docker build for issue 1837 * fix: Linting
This commit is contained in:
parent
7b50fc8a57
commit
28432d3c84
|
|
@ -1,6 +1,7 @@
|
||||||
FROM registry.access.redhat.com/ubi8/ubi:8.2 AS BASE
|
FROM registry.access.redhat.com/ubi8/ubi:8.2 AS base
|
||||||
# Install ping
|
# Install ping
|
||||||
RUN yum --disableplugin=subscription-manager install -y iputils
|
RUN yum --disableplugin=subscription-manager install -y iputils
|
||||||
|
RUN setcap cap_net_raw+ep /bin/ping || exit 1
|
||||||
|
|
||||||
FROM BASE
|
FROM base
|
||||||
RUN set -e && [ ! -z "$(getcap /bin/ping)" ] || exit 1
|
RUN [ ! -z "$(getcap /bin/ping)" ] || exit 1
|
||||||
|
|
@ -420,7 +420,7 @@ func (s *stageBuilder) build() error {
|
||||||
logrus.Debugf("build: cache key for command %v %v", command.String(), ck)
|
logrus.Debugf("build: cache key for command %v %v", command.String(), ck)
|
||||||
|
|
||||||
// Push layer to cache (in parallel) now along with new config file
|
// Push layer to cache (in parallel) now along with new config file
|
||||||
if command.ShouldCacheOutput() && ! s.opts.NoPushCache {
|
if command.ShouldCacheOutput() && !s.opts.NoPushCache {
|
||||||
cacheGroup.Go(func() error {
|
cacheGroup.Go(func() error {
|
||||||
return s.pushLayerToCache(s.opts, ck, tarPath, command.String())
|
return s.pushLayerToCache(s.opts, ck, tarPath, command.String())
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue