You've already forked docker-bitlbee-libpurple
Compare commits
4 Commits
2019112513
...
2019112611
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0023581ccb | ||
|
|
9f05eee5f3 | ||
|
|
646575547f | ||
|
|
a49641cdd4 |
@@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
## 2019-11-25 18:13:41 ([revmischa](https://github.com/revmischa))
|
||||
- add matrix
|
||||
|
||||
## 2019-11-25 13:39:21 ([revmischa](https://github.com/revmischa))
|
||||
- add mastodon
|
||||
|
||||
|
||||
22
Dockerfile
22
Dockerfile
@@ -10,6 +10,7 @@ ARG SIPE=1
|
||||
ARG DISCORD=1
|
||||
ARG ROCKETCHAT=1
|
||||
ARG MASTODON=1
|
||||
ARG MATRIX=1
|
||||
|
||||
ENV BITLBEE_VERSION 3.6
|
||||
ENV FACEBOOK_VERSION v1.2.0
|
||||
@@ -22,6 +23,8 @@ ENV SIPE_VERSION upstream/1.23.3
|
||||
ENV DISCORD_VERSION aa0bbf2
|
||||
ENV ROCKETCHAT_VERSION 826990b
|
||||
ENV MASTODON_VERSION 83dee0b
|
||||
ENV OLM_VERSION 3.1.4
|
||||
ENV MATRIX_VERSION 4494ba2
|
||||
|
||||
RUN addgroup -g 101 -S bitlbee \
|
||||
&& adduser -u 101 -D -S -G bitlbee bitlbee \
|
||||
@@ -40,6 +43,8 @@ RUN addgroup -g 101 -S bitlbee \
|
||||
protobuf-c \
|
||||
discount-libs \
|
||||
libpng \
|
||||
sqlite \
|
||||
http-parser \
|
||||
bash \
|
||||
&& apk add --no-cache --update --virtual .build-dependencies \
|
||||
git \
|
||||
@@ -60,6 +65,8 @@ RUN addgroup -g 101 -S bitlbee \
|
||||
libxml2-dev \
|
||||
discount-dev \
|
||||
libpng-dev \
|
||||
sqlite-dev \
|
||||
http-parser-dev \
|
||||
&& cd /tmp \
|
||||
&& git clone https://github.com/bitlbee/bitlbee.git \
|
||||
&& cd bitlbee \
|
||||
@@ -68,6 +75,7 @@ RUN addgroup -g 101 -S bitlbee \
|
||||
&& make \
|
||||
&& make install \
|
||||
&& make install-dev \
|
||||
&& strip /usr/sbin/bitlbee \
|
||||
&& if [ ${FACEBOOK} -eq 1 ]; then cd /tmp \
|
||||
&& git clone https://github.com/bitlbee/bitlbee-facebook.git \
|
||||
&& cd bitlbee-facebook \
|
||||
@@ -145,6 +153,20 @@ RUN addgroup -g 101 -S bitlbee \
|
||||
&& make \
|
||||
&& make install \
|
||||
&& strip /usr/lib/bitlbee/mastodon.so; fi \
|
||||
&& if [ ${MATRIX} -eq 1 ]; then cd /tmp \
|
||||
&& git clone -n https://gitlab.matrix.org/matrix-org/olm.git \
|
||||
&& cd olm \
|
||||
&& git checkout ${OLM_VERSION} \
|
||||
&& make \
|
||||
&& make install \
|
||||
&& strip /usr/local/lib/libolm.so.${OLM_VERSION} \
|
||||
&& cd /tmp \
|
||||
&& git clone -n https://github.com/matrix-org/purple-matrix \
|
||||
&& cd purple-matrix \
|
||||
&& git checkout ${MATRIX_VERSION} \
|
||||
&& make \
|
||||
&& make install \
|
||||
&& strip /usr/lib/purple-2/libmatrix.so; fi \
|
||||
&& rm -rf /tmp/* \
|
||||
&& rm -rf /usr/include/bitlbee \
|
||||
&& rm -f /usr/lib/pkgconfig/bitlbee.pc \
|
||||
|
||||
@@ -11,6 +11,7 @@ This docker image includes bitlbee with a bunch of useful plugins:
|
||||
- [discord](https://github.com/sm00th/bitlbee-discord)
|
||||
- [rocket.chat](https://bitbucket.org/EionRobb/purple-rocketchat)
|
||||
- [mastodon](https://github.com/kensanata/bitlbee-mastodon)
|
||||
- [matrix](https://github.com/matrix-org/purple-matrix)
|
||||
|
||||
The most significant being the [libpurple Slack plugin](https://github.com/dylex/slack-libpurple). As Slack is turning off its IRC gateway on May 15 2018, now is the time to spin up your own docker image and start using bitlbee instead.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user