Rename bridge to go-groupme

This commit is contained in:
Annie Elequin
2021-09-16 14:44:40 -04:00
parent 2c154762fe
commit cce801604b
19 changed files with 22 additions and 430 deletions

View File

@ -1,30 +1,20 @@
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
FROM golang:1-alpine3.14 AS builder
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-groupme
RUN go build -o /usr/bin/go-groupme
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
FROM alpine:3.14
ENV UID=1337 \
GID=1337
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq yq@edge curl
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq yq curl
COPY --from=builder /usr/bin/mautrix-groupme /usr/bin/mautrix-groupme
COPY --from=builder /build/example-config.yaml /opt/mautrix-groupme/example-config.yaml
COPY --from=builder /usr/bin/go-groupme /usr/bin/go-groupme
COPY --from=builder /build/example-config.yaml /opt/go-groupme/example-config.yaml
COPY --from=builder /build/docker-run.sh /docker-run.sh
VOLUME /data