File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,16 @@ RUN apt-get update && apt-get install -y \
99
1010# Install Relay dependencies
1111RUN apt-get install -y \
12- libck-dev \
1312 libssl-dev
1413
1514# Install Relay dependency (hiredis)
1615RUN curl -L https://github.com/redis/hiredis/archive/refs/tags/v1.2.0.tar.gz | tar -xzC /tmp \
1716 && USE_SSL=1 make -C /tmp/hiredis-1.2.0 install
1817
18+ # Install Relay dependency (concurrency kit)
19+ RUN curl -L https://github.com/concurrencykit/ck/archive/refs/tags/0.7.2.tar.gz | tar -xzC /tmp \
20+ && cd /tmp/ck-0.7.2 && ./configure && make -j$(nproc) && make install
21+
1922ARG RELAY=v0.12.1
2023
2124# Download Relay
Original file line number Diff line number Diff line change @@ -14,14 +14,17 @@ RUN apt-get install -y \
1414
1515# Install Relay dependencies
1616RUN apt-get install -y \
17- libck-dev \
1817 php-msgpack \
1918 php-igbinary
2019
2120# Install Relay dependency (hiredis)
2221RUN curl -L https://github.com/redis/hiredis/archive/refs/tags/v1.2.0.tar.gz | tar -xzC /tmp \
2322 && USE_SSL=1 make -C /tmp/hiredis-1.2.0 install
2423
24+ # Install Relay dependency (concurrency kit)
25+ RUN curl -L https://github.com/concurrencykit/ck/archive/refs/tags/0.7.2.tar.gz | tar -xzC /tmp \
26+ && cd /tmp/ck-0.7.2 && ./configure && make -j$(nproc) && make install
27+
2528ARG RELAY=v0.12.1
2629
2730# Download Relay
You can’t perform that action at this time.
0 commit comments