Docker Linux 容器内核更新

Ube*_*kan 2 linux ubuntu docker python-importlib

我创建了 linux ubuntu 容器,但我厌倦了运行 python 脚本。

但它会引发这个错误:

<frozen importlib._bootstrap>:228: RuntimeWarning: Linux supports fsync/fdsync with io_submit since 4.18 but current kernel 4.15.0-55-generic doesn't support it. Related calls will have no effect.
Run Code Online (Sandbox Code Playgroud)

如何更新 docker 容器内的 ubuntu 内核?

有dockerfile:

FROM ubuntu:21.04
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get dist-upgrade -y

RUN apt-get install python3.9 -y
RUN apt-get install python3-pip -y
Run Code Online (Sandbox Code Playgroud)

Ark*_*zyk 7

您无法升级docker 容器内的内核- 与虚拟化相反,使用 Docker 容器的全部意义在于您使用与底层操作系统相同的内核。您必须升级操作系统内核才能解决此问题。