Azure-pipelines-agent: ubuntu:18.04 - No usable version of the libssl was found

Created on 2 Jul 2020  路  1Comment  路  Source: microsoft/azure-pipelines-agent

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

Most helpful comment

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 

>All comments

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 
Was this page helpful?
0 / 5 - 0 ratings