-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDockerfile
More file actions
42 lines (37 loc) · 765 Bytes
/
Dockerfile
File metadata and controls
42 lines (37 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# To build use:
# docker build -t orian/cppenv:v1 .
FROM ubuntu:15.04
MAINTAINER Pawel Szczur <public at pawelsz.eu>
LABEL description="A linux C++ build environment."
RUN apt-get update && apt-get install -y \
gcc \
clang \
cmake \
libgtest-dev \
libgoogle-glog-dev \
libboost-all-dev \
g++ `#Fb folly deps` \
automake \
autoconf \
autoconf-archive \
libtool \
libboost-all-dev \
libevent-dev \
libdouble-conversion-dev \
libgoogle-glog-dev \
libgflags-dev \
liblz4-dev \
liblzma-dev \
libsnappy-dev \
make \
zlib1g-dev \
binutils-dev \
libjemalloc-dev \
libssl-dev \
libiberty-dev
ENV LD_LIBRARY_PATH=/libs
ENV CPLUS_INCLUDE_PATH=/libs/include
RUN mkdir /src
RUN mkdir /build
WORKDIR /build
CMD ["/bin/bash"]