Docker python (flask) error

Fórumok

Üdv,

Érdekes, hogy a docker-ben egy flask telepítéssel mekkor probléma van.

# Dockerfile

FROM python:3.9-slim

RUN pip install flask

...

139.1 ERROR: Could not find a version that satisfies the requirement flask (from versions: none)
139.1 ERROR: No matching distribution found for flask 

Sima hosztgépen lefut minden. De mindegyik python image esetén ugyanaz a hiba.

Hozzászólások

RUN pip install --upgrade pip

Hátha. :)

139.1 ERROR: Could not find a version that satisfies the requirement flask (from versions: none)

mintha el se érni a pypit

Szerkesztve: 2024. 10. 29., k – 13:31

docker build --network host ...

Nem jó a networking a dockerben, esetleg nincs névfeloldás / proxy van ?

Gábriel Ákos

Ha beállítom a /etc/docker/daemon.json konfigba a DNS-t akkor jó:

{ "dns" : [ "8.8.8.8" , "8.8.4.4" ] }

:)