We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2ed7cb commit f17d4c8Copy full SHA for f17d4c8
Dockerfile
@@ -1,15 +1,15 @@
1
-FROM ubuntu:16.04 as builder
+FROM ubuntu:18.04 as builder
2
RUN apt-get update
3
RUN \
4
DEBIAN_FRONTEND=noninteractive \
5
apt-get install -y \
6
build-essential autoconf automake libpcre3-dev libevent-dev \
7
- pkg-config zlib1g-dev git libboost-all-dev cmake flex
+ pkg-config zlib1g-dev git libboost-all-dev cmake flex libssl-dev
8
RUN git clone https://github.com/RedisLabs/memtier_benchmark.git
9
WORKDIR /memtier_benchmark
10
RUN autoreconf -ivf && ./configure && make && make install
11
12
-FROM ubuntu:16.04
+FROM ubuntu:18.04
13
LABEL Description="memtier_benchmark"
14
COPY --from=builder /usr/local/bin/memtier_benchmark /usr/local/bin/memtier_benchmark
15
0 commit comments