You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
491 B
8 lines
491 B
7 years ago
|
FROM ubuntu:17.10
|
||
|
RUN apt-get update && apt-get install -y git libcurl4-openssl-dev build-essential wget pax libleveldb-dev && apt-get clean
|
||
|
RUN wget https://cmake.org/files/v3.10/cmake-3.10.3-Linux-x86_64.sh && \
|
||
|
chmod +x cmake-3.10.3-Linux-x86_64.sh && \
|
||
|
./cmake-3.10.3-Linux-x86_64.sh --skip-license --exclude-subdir --prefix=/usr && \
|
||
|
rm -rf cmake-3.10.3-Linux-x86_64.sh
|
||
|
CMD rm -rf build && mkdir build && cd build && cmake .. && cmake --build . --target marketmaker-testnet
|