mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-02 20:40:38 +00:00
Added socket ipc and docker support
This commit is contained in:
parent
4177deccf1
commit
04a545b395
13 changed files with 757 additions and 4 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM openjdk:8u151-alpine
|
||||
RUN apk update \
|
||||
&& apk upgrade \
|
||||
&& apk add --no-cache bash libc6-compat
|
||||
COPY build/install/signal-cli /opt/signal-cli
|
||||
ENV PATH="/opt/signal-cli/bin:${PATH}"
|
||||
RUN adduser -D -g '' user
|
||||
USER user
|
||||
RUN mkdir -pv ~/.config/signal/data
|
||||
CMD ["signal-cli", "--singleuser", "socket", "-a", "0.0.0.0"]
|
Loading…
Add table
Add a link
Reference in a new issue