Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Takmazov <vitalyster@gmail.com>2020-07-24 16:06:44 +0300
committerVitaly Takmazov <vitalyster@gmail.com>2020-07-24 17:04:26 +0300
commit07350dfe4a7220239d8dbce2141376f522e2bbe9 (patch)
tree7792483b63744aa0d8a29e0b6a6dd76c58c8dc36 /Dockerfile
parent654ef60deeaf982d418a279b7712890033a12d63 (diff)
Dockerfile: add missing prpls
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile21
1 files changed, 18 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index c51be639..f585a6a1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -59,7 +59,7 @@ RUN /bin/bash ./build_spectrum2.sh
RUN apt-get install --no-install-recommends -y libjson-glib-dev \
graphicsmagick-imagemagick-compat libsecret-1-dev libnss3-dev \
libwebp-dev libgcrypt20-dev libpng-dev libglib2.0-dev \
- libprotobuf-c-dev protobuf-c-compiler
+ libprotobuf-c-dev protobuf-c-compiler libmarkdown2-dev
RUN echo "---> Installing purple-instagram" && \
git clone https://github.com/EionRobb/purple-instagram.git && \
@@ -98,12 +98,25 @@ git clone --recursive https://github.com/majn/telegram-purple && \
./configure && \
make && \
make DESTDIR=/tmp/out install
-
+
RUN echo "---> purple-battlenet" && \
git clone --recursive https://github.com/EionRobb/purple-battlenet && \
cd purple-battlenet && \
make && \
- make DESTDIR=/tmp/out install
+ make DESTDIR=/tmp/out install
+
+RUN echo "---> purple-hangouts" && \
+git clone --recursive https://github.com/EionRobb/purple-hangouts && \
+ cd purple-hangouts && \
+ make && \
+ make DESTDIR=/tmp/out install
+
+RUN echo "---> purple-mattermost" && \
+git clone --recursive https://github.com/EionRobb/purple-mattermost && \
+ cd purple-mattermost && \
+ make && \
+ make DESTDIR=/tmp/out install
+
FROM debian:10.4-slim as production
@@ -125,6 +138,8 @@ RUN echo "deb http://download.opensuse.org/repositories/home:/ars3n1y/Debian_10/
RUN curl -fsSL https://download.opensuse.org/repositories/home:ars3n1y/Debian_10/Release.key | apt-key add
RUN apt-get update -qq
+RUN echo "---> Installing pidgin-sipe" && \
+ apt-get install --no-install-recommends -y pidgin-sipe
RUN echo "---> Installing purple-facebook" && \
apt-get install --no-install-recommends -y purple-facebook
RUN echo "---> Installing purple-telegram" && \