mirror of
https://github.com/mautrix/whatsapp.git
synced 2025-03-14 14:15:38 +00:00
20 lines
438 B
Docker
20 lines
438 B
Docker
FROM golang:1-alpine3.21 AS builder
|
|
|
|
RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev
|
|
|
|
COPY . /build
|
|
WORKDIR /build
|
|
RUN ./build.sh
|
|
|
|
FROM alpine:3.21
|
|
|
|
ENV UID=1337 \
|
|
GID=1337
|
|
|
|
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq yq curl
|
|
|
|
COPY --from=builder /build/mautrix-whatsapp /usr/bin/mautrix-whatsapp
|
|
COPY --from=builder /build/docker-run.sh /docker-run.sh
|
|
VOLUME /data
|
|
|
|
CMD ["/docker-run.sh"]
|