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

Update package versions in mysql docker image #2617

Merged
merged 1 commit into from
Jan 19, 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
6 changes: 3 additions & 3 deletions docker/kanister-mysql/image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG TOOLS_IMAGE
FROM registry.access.redhat.com/ubi9/ubi:9.1.0-1646.1669627755 as builder
FROM registry.access.redhat.com/ubi9/ubi:9.3-1476 as builder

RUN dnf clean all && rm -rf /var/cache/dnf
RUN dnf -y upgrade
# Download the RPM file to avoid timeouts during install
RUN curl -LO https://dev.mysql.com/get/mysql80-community-release-el9-1.noarch.rpm
RUN curl -LO https://dev.mysql.com/get/mysql80-community-release-el9-5.noarch.rpm
# Install from the local file
RUN dnf install -y mysql80-community-release-el9-1.noarch.rpm
RUN dnf install -y mysql80-community-release-el9-5.noarch.rpm

RUN dnf install -y mysql-community-client

Expand Down