-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathredisBloom.dockerfile
48 lines (37 loc) · 1.45 KB
/
redisBloom.dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#----------------------------------------------------------------------------------------------
# This work is subject to the terms of the Redis Source Available License
# https://redislabs.com/wp-content/uploads/2019/09/redis-source-available-license.pdf
#----------------------------------------------------------------------------------------------
# Versions
ARG KEY_DB_VERSION=v6.2.2
ARG REDIS_BLOOM_VERSION=v2.2.2
ARG BUILD_BIN=/build/bin
#----------------------------------------------------------------------------------------------
# Build RedisBloom module
FROM debian:10.3-slim AS builder
ARG BUILD_BIN
ARG REDIS_BLOOM_VERSION
ENV REDIS_BLOOM_VERSION=${REDIS_BLOOM_VERSION}
ENV BUILD_BIN=${BUILD_BIN}
WORKDIR /build
RUN mkdir -p ${BUILD_BIN}
RUN apt update
RUN apt install -y build-essential git
# Redis Bloom
RUN git clone -b ${REDIS_BLOOM_VERSION} https://github.com/RedisBloom/RedisBloom.git && \
cd RedisBloom && \
set -ex && \
make clean && \
make all -j 4 && \
cp redisbloom.so ${BUILD_BIN}/ && \
ls -ltr ${BUILD_BIN}
#----------------------------------------------------------------------------------------------
# Build KeyDB Image with RedisBloom module
FROM eqalpha/keydb:x86_64_${KEY_DB_VERSION}
ARG BUILD_BIN
ENV LIBDIR /usr/lib/redis/modules
RUN mkdir -p ${LIBDIR}
COPY --from=builder ${BUILD_BIN}/* ${LIBDIR}/
CMD [ "keydb-server", \
"/etc/keydb/keydb.conf", \
"--loadmodule", "/usr/lib/redis/modules/redisbloom.so" ]