push to 0.9.0

This commit is contained in:
Sebastian Hugentobler 2023-07-31 12:02:17 +02:00
parent 7fa6a26fa9
commit c0de64cc5e
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -1,6 +1,6 @@
FROM docker.io/golang:1.19.3-alpine3.16 as builder FROM docker.io/golang:1.20-alpine3.18 as builder
ENV VERSION=v0.8.3 ENV VERSION=v0.9.0
RUN apk --no-cache add \ RUN apk --no-cache add \
git \ git \
@ -18,7 +18,7 @@ RUN git checkout $VERSION
RUN go build -o /build/bin/mautrix-whatsapp RUN go build -o /build/bin/mautrix-whatsapp
FROM docker.io/thallian/confd-env:3.17-3.1.3.0 FROM docker.io/thallian/confd-env:3.18-3.1.5.0
RUN addgroup -g 2222 matrix-bridge RUN addgroup -g 2222 matrix-bridge
RUN adduser -h /var/lib/matrix-bridge -u 2222 -D -G matrix-bridge matrix-bridge RUN adduser -h /var/lib/matrix-bridge -u 2222 -D -G matrix-bridge matrix-bridge
@ -28,7 +28,7 @@ COPY --from=builder /build/bin/mautrix-whatsapp /bin/mautrix-whatsapp
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates \ ca-certificates \
libstdc++ \ libstdc++ \
olm olm
WORKDIR /var/lib/matrix-bridge WORKDIR /var/lib/matrix-bridge