Closed bjarn closed 6 months ago
@tillkruss You could have a CI workflow that installs Relay on every supported OS.
We already have that, but there is an issue with our repo metadata. We’re working on fixing this.
I'm able to install Relay via this Dockerfile which looks the same
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \
lsb-release \
curl \
software-properties-common
RUN curl -s https://repos.r2.relay.so/key.gpg | apt-key add - && \
add-apt-repository "deb https://repos.r2.relay.so/deb $(lsb_release -cs) main" && \
add-apt-repository ppa:ondrej/php && \
apt-get -y install php8.2
RUN apt-get -y install php8.2-relay && php --ri relay
Let me know if this is different from what you're trying to do and I'll try to help track down the issue.
@bjarn: Can you run apt-get clean
and see if that resolves the issue for you?
Fixed.
Description
Fresh installation fails to install due to repository error.
Expected Behavior
Should be able to install Relay
Actual Behavior
The download fails with an unexpected size error message, potentially due to an ongoing mirror sync.
Possible Fix
Steps to Reproduce
curl -s https://repos.r2.relay.so/key.gpg | sudo apt-key add -
andsudo add-apt-repository "deb https://repos.r2.relay.so/deb $(lsb_release -cs) main"
Additional context
N/A
Relay diagnostics
N/A
Environment