mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-10-31 20:08:55 +01:00
14 lines
337 B
Docker
14 lines
337 B
Docker
FROM alpine:3.15
|
|
|
|
ENV UID=1337 \
|
|
GID=1337
|
|
|
|
RUN apk add --no-cache ffmpeg su-exec ca-certificates bash jq curl yq
|
|
|
|
ARG EXECUTABLE=./mautrix-whatsapp
|
|
COPY $EXECUTABLE /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"]
|