Skip to content

Commit dd12718

Browse files
authored
Explicitly install redis-server when building test container (#410)
* Explicitly install redis-server when building test container * Merge into layer
1 parent 137cc85 commit dd12718

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dockerfiles/ClipperTestsDockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
ARG CODE_VERSION
22
FROM clipper/lib_base:${CODE_VERSION}
33

4-
# install docker
4+
# install docker and other apt-installable dependencies
55
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --fix-missing -y \
66
wget apt-transport-https ca-certificates curl software-properties-common \
7-
openjdk-8-jdk clang-format \
7+
openjdk-8-jdk clang-format redis-server \
88
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
99
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
1010
&& apt-get update \

0 commit comments

Comments
 (0)