Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPSEXP-2765 Fix LibreOffice docker image by adding missing packages in java base - procps, which. #27

Merged
merged 14 commits into from
Aug 6, 2024
2 changes: 1 addition & 1 deletion java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV LC_ALL C.UTF-8

RUN \
yum update --security -y && \
yum install -y langpacks-en java-${JAVA_MAJOR}-openjdk-headless && \
yum install -y langpacks-en java-${JAVA_MAJOR}-openjdk-headless which procps && \
yum clean all && rm -rf /var/cache/yum

FROM rhlike AS rockylinux8
Expand Down
8 changes: 4 additions & 4 deletions test/helm/test-overrides.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ alfresco-transform-service:
image:
repository: localhost/alfresco-imagemagick
tag: latest
#libreoffice:
#image:
# repository: localhost/alfresco-libreoffice
# tag: latest
libreoffice:
image:
repository: localhost/alfresco-libreoffice
tag: latest
transformmisc:
image:
repository: localhost/alfresco-misc
Expand Down