-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
36 lines (33 loc) · 895 Bytes
/
Dockerfile
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
FROM ubuntu:20.04
LABEL maintainer="Debby Nirwan"
ENV DEBIAN_FRONTEND noninteractive
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
# install dependencies via apt
ENV DEBCONF_NOWARNINGS yes
RUN set -x && \
apt update -y -qq && \
apt upgrade -y -qq --no-install-recommends && \
: "basic dependencies" && \
apt install -y -qq \
build-essential \
clang-format \
clang-tidy \
gcovr \
python3-pip \
cmake && \
: "Google test dependencies" && \
apt install -y -qq \
libgtest-dev && \
: "remove cache" && \
apt autoremove -y -qq && \
rm -rf /var/lib/apt/lists/*
# install dependencies via pip
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir \
plotly \
kaleido \
pandas \
"pybind11[global]"
WORKDIR /work
ENTRYPOINT ["/bin/bash"]