about summary refs log tree commit diff stats
path: root/Dockerfile
blob: 0da723d1bc50f723e71b19fde9f30af918852c24 (plain) (blame)
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
43
44
45
46
# Build the latest openSUSE Tumbleweed image
FROM opensuse/tumbleweed

RUN zypper --non-interactive in --no-recommends \
  git \
  gcc \
  autoconf \
  autoconf-archive \
  make \
  automake \
  libtool \
  glib2-devel \
  gtk2-devel \
  libXss-devel \
  libcurl-devel \
  libexpat-devel \
  libgpgme-devel \
  libmesode-devel \
  libnotify-devel \
  libotr-devel \
  libuuid-devel \
  libcmocka-devel \
  ncurses-devel \
  python3-devel \
  python3 \
  python-devel \
  python \
  readline-devel \
  libsignal-protocol-c-devel \
  libgcrypt-devel \
  libmicrohttpd-devel

RUN mkdir -p /usr/src
WORKDIR /usr/src

RUN mkdir -p /usr/src/stabber
RUN git clone git://github.com/boothj5/stabber.git
WORKDIR /usr/src/stabber
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr --disable-dependency-tracking
RUN make
RUN make install

RUN mkdir -p /usr/src/profanity
WORKDIR /usr/src/profanity
COPY . /usr/src/profanity