Skip to content

Commit

Permalink
Redis update to v7.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
SemperPeritus committed Apr 28, 2023
1 parent 68f4947 commit 1483728
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG REDIS_VERSION=7.0.10
ARG BUILDER_RUST_VERSION=1.68.2
ARG REDIS_VERSION=7.0.11
ARG BUILDER_RUST_VERSION=1.69.0

FROM redis:${REDIS_VERSION} AS redis
FROM rust:${BUILDER_RUST_VERSION} AS moduleBuilder
Expand All @@ -13,7 +13,7 @@ COPY --from=redis /usr/local/ /usr/local/

# https://github.com/RediSearch/RediSearch
ARG MODULE=RediSearch
ARG VERSION=v2.6.6
ARG VERSION=v2.6.9
WORKDIR /modules
RUN git clone --recursive --depth 1 --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git
WORKDIR /modules/${MODULE}
Expand All @@ -26,7 +26,7 @@ RUN cp "$(ls -d /modules/${MODULE}/bin/linux-*-release)/search/redisearch.so" ${

# https://github.com/RedisJSON/RedisJSON
ARG MODULE=RedisJSON
ARG VERSION=v2.4.6
ARG VERSION=v2.4.7
WORKDIR /modules
RUN git clone --depth 1 --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git
WORKDIR /modules/${MODULE}
Expand All @@ -37,7 +37,7 @@ RUN cp /modules/${MODULE}/target/release/librejson.so ${MODULE_PATH}/rejson.so

# https://github.com/RedisTimeSeries/RedisTimeSeries
ARG MODULE=RedisTimeSeries
ARG VERSION=v1.8.9
ARG VERSION=v1.8.10
WORKDIR /modules
RUN git clone --recursive --branch ${VERSION} https://github.com/${MODULE}/${MODULE}.git
WORKDIR /modules/${MODULE}
Expand Down

0 comments on commit 1483728

Please sign in to comment.