Docker Linux 容器内核更新
Docker Linux Container Kernel Update
我创建了 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.
如何更新 docker 容器内的 ubuntu 内核?
有docker文件:
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
您不能在 docker 容器 内升级内核 - 整点
使用 Docker 容器而不是虚拟化的是你
使用与底层 OS 相同的内核。你必须升级
您的操作系统内核来解决这个问题。
我创建了 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.
如何更新 docker 容器内的 ubuntu 内核?
有docker文件:
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
您不能在 docker 容器 内升级内核 - 整点 使用 Docker 容器而不是虚拟化的是你 使用与底层 OS 相同的内核。你必须升级 您的操作系统内核来解决这个问题。