mirror of
https://github.com/typesense/typesense.git
synced 2025-05-21 14:12:27 +08:00
8 lines
314 B
Docker
8 lines
314 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && apt-get -y install build-essential libc6-dbg
|
|
|
|
ADD https://sourceware.org/pub/valgrind/valgrind-3.16.1.tar.bz2 /opt/valgrind-3.16.1.tar.bz2
|
|
RUN tar -C /opt -xf /opt/valgrind-3.16.1.tar.bz2
|
|
RUN cd /opt/valgrind-3.16.1 && ./configure --prefix=/usr && make -j8 && make install
|