Skip to content

Commit fb2164f

Browse files
authored
Merge pull request ppc64le#313 from oskrdt/basic-licence
Building no-oss verrsion
2 parents bae5a3c + f007f22 commit fb2164f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

k/kibana/Dockerfiles/7.9.1_centos_7/Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ RUN yum install -y autoconf automake bzip2 gcc-c++ git gzip libtool make openssl
3030
git apply register_git_hook.diff && \
3131
groupadd kibana && useradd kibana -g kibana && chown kibana:kibana -R /root && \
3232
sed -i 's|await run(Tasks.OptimizeBuild);|//await run(Tasks.OptimizeBuild);|g' src/dev/build/build_distributables.ts && \
33-
su kibana -c 'yarn kbn bootstrap --oss' && \
34-
su kibana -c 'yarn build --skip-os-packages --oss'
33+
sed -i '/Tasks.InstallChromium/d' src/dev/build/build_distributables.ts && \
34+
su kibana -c 'yarn kbn bootstrap --no-oss' && \
35+
su kibana -c 'yarn build --skip-os-packages --no-oss'
3536

3637
RUN mkdir /usr/share/kibana
3738
WORKDIR /usr/share/kibana
38-
RUN tar --strip-components=1 -zxf /root/kibana/target/kibana-oss-7.9.1-SNAPSHOT-linux-ppc64le.tar.gz
39+
RUN tar --strip-components=1 -zxf /root/kibana/target/kibana-7.9.1-SNAPSHOT-linux-ppc64le.tar.gz
3940
# Ensure that group permissions are the same as user permissions.
4041
# This will help when relying on GID-0 to run Kibana, rather than UID-1000.
4142
# OpenShift does this, for example.

0 commit comments

Comments
 (0)