File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11FROM rockylinux:8 AS builder
22RUN yum update -y
3- RUN yum install -y make libtool which git
3+ RUN yum install -y make libtool which git openssl-devel
44# Copy all files from the repository not included in .dockerignore to /src in the image.
55COPY . /src
66WORKDIR /src
77RUN ./deps/install.sh /arcus || (tail ./deps/install.log; exit 1)
88RUN ./config/autorun.sh
9- RUN ./configure --prefix=/arcus --enable-zk-integration
9+ RUN ./configure --prefix=/arcus --enable-zk-integration --enable-sasl
1010RUN make && make install
1111
1212FROM rockylinux:8 AS base
13+ RUN yum update -y
14+ RUN yum -y openssl-devel
1315COPY --from=builder /arcus /arcus
1416ENV PATH=${PATH}:/arcus/bin
1517
@@ -24,7 +26,6 @@ ENTRYPOINT ["memcached",\
2426
2527# for arcus-operator
2628FROM base
27- RUN yum update -y
2829RUN yum install -y bind-utils nc
2930RUN yum clean all -y
3031ENV MEMCACHED_DIR=/arcus-memcached
You can’t perform that action at this time.
0 commit comments