mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-05 06:18:59 +01:00
31 lines
987 B
Docker
31 lines
987 B
Docker
FROM golang:1-alpine3.12 AS builder
|
|
|
|
RUN echo $'\
|
|
@edge http://dl-cdn.alpinelinux.org/alpine/edge/main\n\
|
|
@edge http://dl-cdn.alpinelinux.org/alpine/edge/testing\n\
|
|
@edge http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
|
|
|
|
RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev
|
|
|
|
COPY . /build
|
|
WORKDIR /build
|
|
RUN go build -o /usr/bin/mautrix-whatsapp
|
|
|
|
FROM alpine:3.12
|
|
|
|
RUN echo $'\
|
|
@edge http://dl-cdn.alpinelinux.org/alpine/edge/main\n\
|
|
@edge http://dl-cdn.alpinelinux.org/alpine/edge/testing\n\
|
|
@edge http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
|
|
|
|
ENV UID=1337 \
|
|
GID=1337
|
|
|
|
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq yq@edge curl
|
|
|
|
COPY --from=builder /usr/bin/mautrix-whatsapp /usr/bin/mautrix-whatsapp
|
|
COPY --from=builder /build/example-config.yaml /opt/mautrix-whatsapp/example-config.yaml
|
|
COPY --from=builder /build/docker-run.sh /docker-run.sh
|
|
VOLUME /data
|
|
|
|
CMD ["/docker-run.sh"]
|