From 0cd8b71aba56bd7d749c5f7edb6b81d26807163f Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Fri, 10 Jan 2025 14:17:48 +0100 Subject: [PATCH] push to 0.7.2 --- Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 94b4f74..78a3e93 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/golang:1.23-alpine3.20 as builder +FROM docker.io/golang:1.23-alpine3.21 as builder ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE" @@ -13,14 +13,14 @@ RUN ln -s /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so WORKDIR /build -ENV VERSION=v0.7.1 +ENV VERSION=v0.7.2 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.20-3.1.6.2 +FROM docker.io/thallian/confd-env:3.21-3.2.0.2 RUN addgroup -g 2222 matrix-bridge RUN adduser -h /var/lib/matrix-bridge -u 2222 -D -G matrix-bridge matrix-bridge