From d654125492a448eb4a4aec7fefc2952b827c4859 Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Thu, 6 Apr 2023 11:41:58 -0700 Subject: [PATCH] Adding First commit to CMC --- Dockerfile | 7 +++++++ README.md | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ae2a0b3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM almalinux/8-base:latest +RUN dnf update -y && dnf upgrade -y +RUN dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y +RUN dnf update -y && dnf upgrade -y +RUN dnf install -y memcached +RUN yum clean all +ENTRYPOINT [ " /usr/bin/memcached -u memcached -l 0.0.0.0" ] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..7cbaa2c --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Cloud Memcached Constainer # +Container with a default install of Memcached for use with Cloud Apache Container. + +Should be used in conjunction With a service mesh to present to CAC containers running locally on 11211. \ No newline at end of file