FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cppenv/Dockerfile at master · orian/cppenv · GitHub
orian
/
cppenv
Public
Notifications
You must be signed in to change notification settings
Fork
9
Star
34
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cppenv
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (37 loc) · 765 Bytes
Breadcrumbs
cppenv
/
Dockerfile
Copy path
File metadata and controls
42 lines (37 loc) · 765 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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"
]
Back
|
FazBrowse Home
|
New Git URL