Hi! I have a docker image for php-fpm with percona-server-client inside. I install it like this:
COPY repo-keys/percona.gpg /etc/apt/trusted.gpg.d/percona.gpg
RUN echo "deb https://repo.percona.com/ps-80/apt bullseye main" > /etc/apt/sources.list.d/percona-ps-80-release.list
RUN apt-get update && apt-get install --no-install-recommends -y \
percona-server-client \
It works perfect for amd64 but now I want to build this image with arm64 support. As Percona doesn’t provide support for arm64 platform (any updates there?) docker can’t find a correspondent package during the build:
Unable to locate package percona-server-client
Is there a chance that I can build only a client from the sources? If it’s possible to build a server then there should be a way to build a client too… can anyone help me with it, please?
Is it possible to do it on linux machine with docker buildx at all?