forked from MirrorHub/mautrix-whatsapp
14 lines
289 B
Docker
14 lines
289 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
ENV UID=1337 \
|
||
|
GID=1337
|
||
|
|
||
|
RUN apk add --no-cache su-exec ca-certificates
|
||
|
|
||
|
COPY ./mautrix-whatsapp /usr/bin/mautrix-whatsapp
|
||
|
COPY ./example-config.yaml /opt/mautrix-whatsapp/example-config.yaml
|
||
|
COPY ./docker-run.sh /docker-run.sh
|
||
|
VOLUME /data
|
||
|
|
||
|
CMD ["/docker-run.sh"]
|