We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a6979 commit 82dfb18Copy full SHA for 82dfb18
Dockerfile
@@ -7,13 +7,14 @@ RUN set -ex;\
7
deps="$DEPS";\
8
apt-get update; \
9
apt-get install -y --no-install-recommends $deps;\
10
- pip install rmtest;
+ pip install rmtest;
11
12
# Build the source
13
ADD . /REJSON
14
WORKDIR /REJSON
15
RUN set -ex;\
16
cargo build --release; \
17
+ pip install -r ./test/pytest/requirements.txt\
18
python ./test/pytest/test.py target/release/libredisjson.so;
19
20
# Package the runner
@@ -24,4 +25,4 @@ RUN set -ex;\
24
25
mkdir -p "$LIBDIR";
26
COPY --from=builder /REJSON/target/release/libredisjson.so "$LIBDIR"
27
-CMD ["redis-server", "--loadmodule", "/usr/lib/redis/modules/libredisjson.so"]
28
+CMD ["redis-server", "--loadmodule", "/usr/lib/redis/modules/libredisjson.so"]
0 commit comments