Hey Everyone,
I'm following the documentation to run a self hosted agent in docker: link
But I get stuck with the following error
>> Connect:
No usable version of the libssl was found
./config.sh: line 86: 69 Aborted ./bin/Agent.Listener configure "$@"
Do you have an idea why? Maybe this is linked to the release of the new ubuntu image (two weeks ago)
Thanks
To fix, you have to change the docker file with
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
jq \
git \
iputils-ping \
libcurl4 \
libicu60 \
libunwind8 \
netcat \
libssl1.0
Most helpful comment
To fix, you have to change the docker file with