matrix-bridge-whatsapp/Dockerfile

37 lines
788 B
Docker
Raw Normal View History

2018-11-27 12:12:34 +00:00
FROM golang:alpine as builder
ENV VERSION=7b067b4737b62ec5b80eaa0eb1c11b98334e61fc
2019-03-27 17:33:54 +00:00
2018-11-27 12:12:34 +00:00
RUN apk --no-cache add \
git \
gcc \
musl-dev
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
RUN go get
RUN go build -o /build/bin/mautrix-whatsapp
2018-11-27 12:12:34 +00:00
FROM thallian/confd-env:latest
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
2018-11-27 12:39:11 +00:00
RUN apk --no-cache add ca-certificates
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