commit d654125492a448eb4a4aec7fefc2952b827c4859 Author: Josh Knapp Date: Thu Apr 6 11:41:58 2023 -0700 Adding First commit to CMC 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