Skip to content

Commit dcd1876

Browse files
committed
INTERNAL: Add SASL to Dockerfile
1 parent 35a78ad commit dcd1876

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
FROM rockylinux:8 AS builder
22
RUN 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.
55
COPY . /src
66
WORKDIR /src
77
RUN ./deps/install.sh /arcus || (tail ./deps/install.log; exit 1)
88
RUN ./config/autorun.sh
9-
RUN ./configure --prefix=/arcus --enable-zk-integration
9+
RUN ./configure --prefix=/arcus --enable-zk-integration --enable-sasl
1010
RUN make && make install
1111

1212
FROM rockylinux:8 AS base
13+
RUN yum update -y
14+
RUN yum -y openssl-devel
1315
COPY --from=builder /arcus /arcus
1416
ENV PATH=${PATH}:/arcus/bin
1517

@@ -24,7 +26,6 @@ ENTRYPOINT ["memcached",\
2426

2527
# for arcus-operator
2628
FROM base
27-
RUN yum update -y
2829
RUN yum install -y bind-utils nc
2930
RUN yum clean all -y
3031
ENV MEMCACHED_DIR=/arcus-memcached

0 commit comments

Comments
 (0)