matrix-bridge-whatsapp/Containerfile

43 lines
927 B
Plaintext
Raw Permalink Normal View History

2024-08-04 12:19:27 +00:00
FROM docker.io/golang:1.22-alpine3.20 as builder
2018-11-27 12:12:34 +00:00
2024-11-01 08:05:18 +00:00
ENV VERSION=v0.11.0
2019-03-27 17:33:54 +00:00
2018-11-27 12:12:34 +00:00
RUN apk --no-cache add \
2022-11-18 08:25:26 +00:00
git \
gcc \
olm-dev \
libc-dev \
musl-dev
2018-11-27 12:12:34 +00:00
2020-07-08 18:44:47 +00:00
RUN ln -s /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so
2019-02-15 12:38:00 +00:00
WORKDIR /build
RUN git clone https://github.com/tulir/mautrix-whatsapp.git
WORKDIR /build/mautrix-whatsapp
2019-03-27 17:33:54 +00:00
RUN git checkout $VERSION
2019-02-15 12:38:00 +00:00
2024-11-01 08:05:18 +00:00
RUN go build -o /build/bin/mautrix-whatsapp /build/mautrix-whatsapp/cmd/mautrix-whatsapp/
2018-11-27 12:12:34 +00:00
2024-07-18 10:33:52 +00:00
FROM docker.io/thallian/confd-env:3.20-3.1.6.2
2018-11-27 12:12:34 +00:00
RUN addgroup -g 2222 matrix-bridge
RUN adduser -h /var/lib/matrix-bridge -u 2222 -D -G matrix-bridge matrix-bridge
2019-02-15 12:38:00 +00:00
COPY --from=builder /build/bin/mautrix-whatsapp /bin/mautrix-whatsapp
2018-11-27 12:12:34 +00:00
2020-07-08 18:15:18 +00:00
RUN apk --no-cache add \
2022-11-18 08:25:26 +00:00
ca-certificates \
libstdc++ \
2023-07-31 10:02:17 +00:00
olm
2018-11-27 12:39:11 +00:00
2018-11-27 12:12:34 +00:00
WORKDIR /var/lib/matrix-bridge
RUN mkdir /var/lib/matrix-bridge/data
ADD /rootfs /
RUN chown -R matrix-bridge:matrix-bridge /var/lib/matrix-bridge
ENV HOME /var/lib/matrix-bridge
2018-11-27 12:39:11 +00:00
EXPOSE 8080