2024-08-12 21:22:50 -04:00
|
|
|
FROM almalinux/9-base
|
2023-04-06 11:41:58 -07:00
|
|
|
RUN dnf update -y && dnf upgrade -y
|
2024-08-12 21:22:50 -04:00
|
|
|
RUN dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -y
|
2023-04-06 11:41:58 -07:00
|
|
|
RUN dnf update -y && dnf upgrade -y
|
2023-04-11 11:28:32 -07:00
|
|
|
RUN dnf install -y memcached procps-ng
|
2023-04-06 11:41:58 -07:00
|
|
|
RUN yum clean all
|
2023-04-07 07:55:36 -07:00
|
|
|
COPY ./scripts/entrypoint.sh /
|
|
|
|
RUN chmod +x /entrypoint.sh
|
2024-08-12 21:22:50 -04:00
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|