-
Notifications
You must be signed in to change notification settings - Fork 9
/
cthulhu.dockerfile
47 lines (36 loc) · 1.4 KB
/
cthulhu.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 BSD License
# https://github.com/sklivvz/cthulhu/blob/master/LICENSE
#----------------------------------------------------------------------------------------------
# Versions
ARG KEY_DB_VERSION=v6.2.2
ARG CTHULHU_RELEASE=master
ARG BUILD_BIN=/build/bin
#----------------------------------------------------------------------------------------------
# Build cthulhu module
FROM debian:10.3-slim AS builder
ARG BUILD_BIN
ARG CTHULHU_RELEASE
ENV CTHULHU_RELEASE=${CTHULHU_RELEASE}
ENV BUILD_BIN=${BUILD_BIN}
WORKDIR /build
RUN mkdir -p ${BUILD_BIN}
RUN apt update
RUN apt install -y build-essential git cmake
# cthulhu
RUN git clone -b ${CTHULHU_RELEASE} https://github.com/sklivvz/cthulhu.git && \
cd cthulhu/src && \
./make.sh && \
cp cthulhu.so ${BUILD_BIN}/ && \
cp cthulhu.js ${BUILD_BIN}/ && \
ls -ltr ${BUILD_BIN}
#----------------------------------------------------------------------------------------------
# Build KeyDB Image with cthulhu 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/cthulhu.so", "/usr/lib/redis/modules/cthulhu.js" ]