da22d2d93a
Upstream change has merged that makes a REST endpoint that enables/disables the Zuul Summary tab on a per-project basis in results. It defaults to enabled. This happens via a .jar which is now copied in during the build. Change-Id: If50f0fa3c5fb116bd0a5a78694de1e7067aa7f11 Depends-On: https://gerrit-review.googlesource.com/c/plugins/zuul-results-summary/+/298465/
26 lines
996 B
Docker
26 lines
996 B
Docker
# Copyright (c) 2019 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM docker.io/opendevorg/gerrit-base as gerrit
|
|
|
|
COPY bazel-bin/release.war /var/gerrit/bin/gerrit.war
|
|
|
|
# Install plugins
|
|
RUN mkdir /var/gerrit/plugins && \
|
|
unzip -jo /var/gerrit/bin/gerrit.war WEB-INF/plugins/* -d /var/gerrit/plugins
|
|
|
|
COPY opendevtheme.html /var/gerrit/plugins/opendevtheme.html
|
|
COPY bazel-bin/plugins/zuul-results-summary/zuul-results-summary.jar /var/gerrit/plugins/zuul-results-summary.jar
|