A WhatsApp (Web) transport for XMPP.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM rigetti/lisp AS whatscl-compiled
-
- RUN apt update -y && apt install -y git
- RUN sbcl --eval '(progn (quicklisp:update-dist "quicklisp" :prompt nil) (sb-ext:exit))'
- RUN git clone https://github.com/sharplispers/ironclad /src/ironclad
- RUN git clone https://github.com/eeeeeta/websocket-driver /src/websocket-driver
- RUN git clone https://git.theta.eu.org/whatscl.git /src/whatscl
- ADD ./ /src/whatsxmpp
- WORKDIR /src/whatsxmpp
- RUN make
-
- FROM debian:stable-slim AS whatsxmpp
- WORKDIR /wx
- RUN apt-get update && apt-get install -y libz-dev libsqlite3-dev libssl-dev ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/*
- RUN mkdir /wx-data
- COPY --from=whatscl-compiled /src/whatsxmpp/whatsxmpp /wx/whatsxmpp
- ENTRYPOINT ["/wx/whatsxmpp"]
|