Debian 10 production packages cannot be found

Hi I have an docker image and I noticed after yesterday I cannot run it as it run the error that some repository url is invalid. And when I check I saw that it is true the debian repository structure has already been change https://packages.microsoft.com/debian/10/ on 16/6/2021. Does any one know the solution?

FROM python:3.7-buster

RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list

RUN apt-get update && ACCEPT_EULA=Y apt-get install -y \
    msodbcsql17 \
    unixodbc-dev \
    openssh-server \
    nginx-full \
    --no-install-recommends \
 && rm -rf /var/lib/apt/lists/*

error enter image description here

Upvotes: 5

Views: 707

Answers (1)

GAD3R
GAD3R

Reputation: 4625

It is a general issue, the issue is partially solved but the download speed is very slow. Here is a detailed report from bleepingcomputer blog post :Microsoft Linux repos suffer day-long outage, still recovering

Although Microsoft's initial ETA to resolve the issue was "two hours or so," the problem spanned well over 14 hours, with users continuing to experience degraded performance.

Microsoft engineer Rahul Bhandari stepped in on the same GitHub thread to confirm:

"Our infra team is working on this. There is an issue with some of the mirrors on packages.microsoft.com so as per them, the current ETA to resolve this issue is in next two hours or so," said Bhandari.

Bhandari later confirmed that some storage issues were the root cause of these problems.

Microsoft's principal engineering manager, Ravindra Bhartiya said:

"We had an incident with packages.microsoft.com that resulted in packages being unavailable."

"Our engineering team has mitigated the issue and our internal data shows improvement in the availability"

"If you still have problems, please provide us more information (output of "apt-get update|install") and we can investigate it further," said Bhartiya.

But even into today, at the time of writing, users are complaining about slow download speeds when retrieving packages from Microsoft's repo.

Upvotes: 1

Related Questions