Skip to content

Commit f17d4c8

Browse files
committed
dockerfile: Upgrate base image to ubuntu:18.04
Signed-off-by: Radostin Stoyanov <[email protected]>
1 parent c2ed7cb commit f17d4c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM ubuntu:16.04 as builder
1+
FROM ubuntu:18.04 as builder
22
RUN apt-get update
33
RUN \
44
DEBIAN_FRONTEND=noninteractive \
55
apt-get install -y \
66
build-essential autoconf automake libpcre3-dev libevent-dev \
7-
pkg-config zlib1g-dev git libboost-all-dev cmake flex
7+
pkg-config zlib1g-dev git libboost-all-dev cmake flex libssl-dev
88
RUN git clone https://github.com/RedisLabs/memtier_benchmark.git
99
WORKDIR /memtier_benchmark
1010
RUN autoreconf -ivf && ./configure && make && make install
1111

12-
FROM ubuntu:16.04
12+
FROM ubuntu:18.04
1313
LABEL Description="memtier_benchmark"
1414
COPY --from=builder /usr/local/bin/memtier_benchmark /usr/local/bin/memtier_benchmark
1515
RUN \

0 commit comments

Comments
 (0)