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

BAH-3979 | Add. Steps to install upgraded MySQL 8.0 client #197

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions package/docker/openmrs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,17 @@ COPY package/resources/blank-user.png /etc/bahmni/

# Used by envsubst command for replacing environment values at runtime
RUN yum install -y \
mysql \
mysql-client \
gettext-base \
gettext \
acl

# Install mysql client to run sql scripts
rahu1ramesh marked this conversation as resolved.
Show resolved Hide resolved
RUN yum install -y https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm \
&& rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023 \
&& yum install -y mysql-community-client \
&& yum clean all \
&& rm -rf /var/cache/yum

# Modify file permissions for document_images directory
RUN setfacl -d -m o::rx -m g::rx /home/bahmni/document_images/

Expand Down
Loading