Rename bridge to go-groupme
This commit is contained in:
22
Dockerfile
22
Dockerfile
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user