groupme/Dockerfile

32 lines
987 B
Docker
Raw Normal View History

2020-06-23 16:40:05 +03:00
FROM golang:1-alpine3.12 AS builder
2018-08-24 23:06:55 +03:00
2020-10-19 14:46:59 +03:00
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
2018-08-26 17:29:51 +03:00
COPY . /build
2020-06-07 21:20:57 +03:00
WORKDIR /build
2018-08-26 17:29:51 +03:00
RUN go build -o /usr/bin/mautrix-whatsapp
2018-08-24 23:06:55 +03:00
2020-06-23 16:40:05 +03:00
FROM alpine:3.12
2018-08-24 23:06:55 +03:00
2020-10-19 14:46:59 +03:00
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
2020-08-14 15:10:44 -06:00
ENV UID=1337 \
GID=1337
2020-10-19 14:46:59 +03:00
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq yq@edge curl
2018-08-24 23:06:55 +03:00
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
2018-08-24 23:06:55 +03:00
VOLUME /data
CMD ["/docker-run.sh"]