mautrix-whatsapp/Dockerfile.ci

15 lines
337 B
Text
Raw Normal View History

2021-11-30 13:17:33 +02:00
FROM alpine:3.15
2020-08-17 15:46:05 -06:00
2019-07-27 17:03:05 +03:00
ENV UID=1337 \
GID=1337
2021-02-05 19:39:27 +02:00
RUN apk add --no-cache ffmpeg su-exec ca-certificates bash jq curl yq
2019-07-27 17:03:05 +03:00
2020-02-25 22:59:39 +02:00
ARG EXECUTABLE=./mautrix-whatsapp
COPY $EXECUTABLE /usr/bin/mautrix-whatsapp
2019-07-27 17:03:05 +03:00
COPY ./example-config.yaml /opt/mautrix-whatsapp/example-config.yaml
COPY ./docker-run.sh /docker-run.sh
VOLUME /data
CMD ["/docker-run.sh"]