-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.docker
More file actions
41 lines (31 loc) · 756 Bytes
/
build.docker
File metadata and controls
41 lines (31 loc) · 756 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
FROM ubuntu:20.04
RUN echo "Don't use cache #3" > /.force_full_rebuild
RUN apt-get update
RUN apt-get install -y wget gnupg
RUN apt-get update
RUN DEBIAN_FRONTEND="noninteractive" apt-get install -y \
build-essential \
cmake \
ccache \
ninja-build \
clang-tools-11 \
g++-10
RUN apt-get install -y \
python3 \
python3-pip \
git
RUN pip3 install PyYAML \
pytz \
docopt \
requests \
cpplint \
numpy \
pytest
RUN apt-get install -y \
libpoco-dev \
libjsoncpp-dev \
libboost-dev \
libpng-dev \
libre2-dev
RUN apt-get install -y clang-format-11 clang-tidy-11
RUN apt-get install -y libjpeg-dev