-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (29 loc) · 758 Bytes
/
Dockerfile
File metadata and controls
33 lines (29 loc) · 758 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
FROM ubuntu:cosmic
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
ca-certificates \
git \
g++ \
libnotmuch-dev \
libglibmm-2.4-dev \
libgtkmm-3.0-dev \
libwebkit2gtk-4.0-dev \
libgmime-2.6-dev \
libsass-dev \
libpeas-dev \
libgirepository1.0-dev \
libboost-all-dev \
protobuf-compiler \
ronn \
cmake \
libgmime-3.0-dev \
libprotobuf-dev \
vim-gtk3 \
cmark \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/astroidmail/astroid.git \
&& cd astroid \
&& cmake -H. -Bbuild -DCMAKE_INSTALL_PREFIX=/usr/local \
&& cmake --build build --target install
ENTRYPOINT [ "/usr/local/bin/astroid" ]