-
Notifications
You must be signed in to change notification settings - Fork 9
/
redis-cell.dockerfile
47 lines (36 loc) · 1.51 KB
/
redis-cell.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
#----------------------------------------------------------------------------------------------
# This work is subject to the terms of the MIT License
# https://github.com/brandur/redis-cell/blob/master/LICENSE
#----------------------------------------------------------------------------------------------
# Versions
ARG KEY_DB_VERSION=v6.2.2
ARG REDIS_CELL_VERSION=v0.2.5
ARG BUILD_BIN=/build/bin
#----------------------------------------------------------------------------------------------
# Build Redis Cell module
FROM debian:10.3-slim AS builder
ARG BUILD_BIN
ARG REDIS_CELL_VERSION
ENV REDIS_CELL_VERSION=${REDIS_CELL_VERSION}
ENV BUILD_BIN=${BUILD_BIN}
WORKDIR /build
RUN mkdir -p ${BUILD_BIN}
RUN apt update
RUN apt install -y build-essential git curl tar
# Redis cell
RUN mkdir -p redis-cell && \
cd redis-cell && \
curl -Ls https://github.com/brandur/redis-cell/releases/download/${REDIS_CELL_VERSION}/redis-cell-${REDIS_CELL_VERSION}-x86_64-unknown-linux-gnu.tar.gz -o redis-cell.tar.gz && \
tar -xzvf redis-cell.tar.gz && \
cp libredis_cell.so ${BUILD_BIN}/ && \
ls -ltr ${BUILD_BIN}
#----------------------------------------------------------------------------------------------
# Build KeyDB Image with Redis Cell 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", \
"--loadmodule", "/usr/lib/redis/modules/libredis_cell.so", \
"/etc/keydb/keydb.conf"]