-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
63 lines (40 loc) · 1.29 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
# BUILD starkdg/imagescout:${VERSION}-${ARCH}-${OSNICK}
ARG REDIS_VER=6.0.7
# bionic|stretch|buster|etc
ARG OSNICK=buster
# debian:buster-slim|debian:stretch-slim|ubuntu:bionic
ARG OS=debian:buster-slim
# x64|arm64v8|arm32v7|etc
ARG ARCH=x64
#---------------------------------------------------------------------
FROM redisfab/redis:${REDIS_VER}-${ARCH}-${OSNICK} AS redis
# Build based on ${OS} (i.e. 'builder'), redis files are copies from 'redis'
FROM ${OS} AS builder
# Re-introduce arguments to this image
ARG OSNICK
ARG OS
ARG ARCH
ARG REDIS_VER
RUN echo "Building for $OSNICK ($OS) FOR $ARCH"
WORKDIR /build
COPY --from=redis /usr/local/ /usr/local/
ADD CMakeLists.txt *.h *.cpp *.hpp /build/
RUN set -ex;\
apt-get -q update ;\
apt-get install -y --no-install-recommends ca-certificates wget;\
apt-get install -y --no-install-recommends build-essential cmake
RUN set -ex;\
cmake -DCMAKE_BUILD_TYPE=Release . ;\
make
#--------------------------------------------------------------------
FROM redisfab/redis:${REDIS_VER}-${ARCH}-${OSNICK}
ARG OSNICK
ARG OS
ARG ARCH
ARG REDIS_VER
WORKDIR /data
ENV LIBDIR /usr/lib/redis/modules
RUN mkdir -p $LIBDIR
COPY --from=builder /build/imgscout.so "$LIBDIR"
EXPOSE 6379
CMD ["redis-server", "--loadmodule", "/usr/lib/redis/modules/imgscout.so"]