-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Build #200
Comments
Here is my error
|
Base on the ticker #199 i can improve my dockerfile but i'm stuck as the level as the ticker #199
|
I think this will work: FROM ubuntu:18.04
# Install basic deps for all packages
RUN apt-get update && \
apt-get install -y \
cmake \
git \
wget \
g++
# Install Folly
# Install folly package deps
RUN apt-get install -y \
g++ \
cmake \
libboost-all-dev \
libevent-dev \
libdouble-conversion-dev \
libgoogle-glog-dev \
libgflags-dev \
libiberty-dev \
liblz4-dev \
liblzma-dev \
libsnappy-dev \
make \
zlib1g-dev \
binutils-dev \
libjemalloc-dev \
libssl-dev \
pkg-config
# Install folly itself
RUN git clone https://github.com/facebook/folly.git
# Install WDT from source
RUN apt-get install -y \
libgtest-dev \
libboost-all-dev
RUN git clone --single-branch --branch folly-fixes https://github.com/sashanullptr/wdt.git && \
cd wdt && \
mkdir _build && cd _build && \
cmake .. \
-DBUILD_TESTING=off && \
make -j$(nproc) && \
make install You'll need to patch |
With #201 merged this should be resolved. |
Hi Guys,
I'm trying to build wdt inside a docker
here is my dockerfile.
The text was updated successfully, but these errors were encountered: