push to 0.6.4

This commit is contained in:
Sebastian Hugentobler 2024-01-01 20:23:32 +01:00
parent f138a350f9
commit 2c886bc537
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 17 additions and 14 deletions

44
Containerfile Normal file
View file

@ -0,0 +1,44 @@
FROM docker.io/golang:1.21-alpine3.19 as builder
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
RUN apk --no-cache add \
git \
gcc \
olm-dev \
libc-dev \
musl-dev
RUN ln -s /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so
WORKDIR /build
ENV VERSION=v0.6.4
RUN git clone https://github.com/mautrix/discord.git
WORKDIR /build/discord
RUN git checkout $VERSION
RUN go build -o /build/bin/mautrix-discord
FROM docker.io/thallian/confd-env:3.19-3.1.6.2
RUN addgroup -g 2222 matrix-bridge
RUN adduser -h /var/lib/matrix-bridge -u 2222 -D -G matrix-bridge matrix-bridge
COPY --from=builder /build/bin/mautrix-discord /bin/mautrix-discord
RUN apk --no-cache add \
ca-certificates \
libstdc++ \
olm
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
EXPOSE 8080