-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
41 lines (30 loc) · 809 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
37
38
39
40
41
FROM ubuntu:20.04 as builder
RUN apt update
#RUN apt upgrade -y
RUN apt install -y tzdata
RUN apt install -y vim \
fish \
wget \
make \
ninja-build \
clang \
clang-tools \
clangd \
clang-tidy \
clang-format \
lldb
# need to build rnnoise.
RUN apt install -y automake autoconf libtool
RUN apt install -y cmake
#RUN wget https://cmake.org/files/v3.20/cmake-3.20.0-rc5.tar.gz && \
# tar xvf cmake-*.tar.gz && \
# cd cmake-*/ && ./configure && make && make install && \
# export PATH="/usr/local/bin:$PATH"
RUN apt-get install -y doxygen graphviz
RUN apt-get install -y swig
RUN apt-get install -y build-essential libgl1-mesa-dev libglu1-mesa-dev
#RUN make setup
FROM builder as docs
FROM builder as prod
FROM builder as devel
FROM builder as devel-gpu