can‘t read /etc/apt/sources.list: No such file or directory

bash 复制代码
使用第二种方法现在直接报错了

(base) root@iZbp12r139zzzpzpwtqtqyZ:/opt/ppt_base# docker build -t ppt-base:latest -f Dockerfile .
[+] Building 0.5s (5/5) FINISHED                                                               docker:default
 => [internal] load build definition from Dockerfile                                                     0.0s
 => => transferring dockerfile: 367B                                                                     0.0s
 => [internal] load metadata for docker.io/library/python:3.11-slim                                      0.1s
 => [internal] load .dockerignore                                                                        0.0s
 => => transferring context: 2B                                                                          0.0s
 => CACHED [1/2] FROM docker.io/library/python:3.11-slim@sha256:8eb5fc663972b871c528fef04be4eaa9ab8ab45  0.0s
 => => resolve docker.io/library/python:3.11-slim@sha256:8eb5fc663972b871c528fef04be4eaa9ab8ab4539a5316  0.0s
 => ERROR [2/2] RUN sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list &&     apt-get  0.2s
------                                                                                                        
 > [2/2] RUN sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list &&     apt-get update &&     apt-get install -y --no-install-recommends         libreoffice-writer libreoffice-impress libreoffice-calc         fonts-dejavu imagemagick     && rm -rf /var/lib/apt/lists/*:
0.209 sed: can't read /etc/apt/sources.list: No such file or directory
------
Dockerfile:3
--------------------
   2 |     FROM python:3.11-slim
   3 | >>> RUN sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list && \
   4 | >>>     apt-get update && \
   5 | >>>     apt-get install -y --no-install-recommends \
   6 | >>>         libreoffice-writer libreoffice-impress libreoffice-calc \
   7 | >>>         fonts-dejavu imagemagick \
   8 | >>>     && rm -rf /var/lib/apt/lists/*
   9 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list &&     apt-get update &&     apt-get install -y --no-install-recommends         libreoffice-writer libreoffice-impress libreoffice-calc         fonts-dejavu imagemagick     && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 2
(base) root@iZbp12r139zzzpzpwtqtqyZ:/opt/ppt_base# 

对,这次的报错是合理的,不是网络问题,是我们"换源那一行"写得太老了:

bash 复制代码
sed: can't read /etc/apt/sources.list: No such file or directory

原因:现在的 python:3.11-slim 基于比较新的 Debian(bookworm/trixie),它已经用 /etc/apt/sources.list.d/debian.sources 这种新格式了,根本没有传统的 /etc/apt/sources.list,所以你一 sed 就报错。

给你一份能在这类 slim 镜像上跑的 兼容写法,直接用👇这个 Dockerfile:

bash 复制代码
FROM python:3.11-slim

# 1. 替换源(兼容老文件和 debian.sources)
RUN if [ -f /etc/apt/sources.list ]; then \
        sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list && \
        sed -i 's@security.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list ; \
    elif [ -f /etc/apt/sources.list.d/debian.sources ]; then \
        sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list.d/debian.sources && \
        sed -i 's@security.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list.d/debian.sources ; \
    else \
        echo "no apt source file found"; \
    fi \
    && apt-get update \
    && apt-get install -y --no-install-recommends \
        libreoffice-writer \
        libreoffice-impress \
        libreoffice-calc \
        fonts-dejavu \
        imagemagick \
    && rm -rf /var/lib/apt/lists/*

要点讲清楚:

  1. 先判断 /etc/apt/sources.list 在不在,在就 sed 它;

  2. 不在就改 /etc/apt/sources.list.d/debian.sources;

  3. 再 apt-get update,再装 libreoffice。

相关推荐
2401_838472519 分钟前
使用Python处理计算机图形学(PIL/Pillow)
jvm·数据库·python
深蓝电商API17 分钟前
aiohttp爬取带登录态的异步请求
爬虫·python
rainbow688920 分钟前
Python学生管理系统:JSON持久化实战
java·前端·python
咕噜咕噜啦啦31 分钟前
ROS入门
linux·vscode·python
2301_7903009631 分钟前
用Matplotlib绘制专业图表:从基础到高级
jvm·数据库·python
XLYcmy39 分钟前
一个用于统计文本文件行数的Python实用工具脚本
开发语言·数据结构·windows·python·开发工具·数据处理·源代码
DFT计算杂谈1 小时前
VASP+PHONOPY+pypolymlpj计算不同温度下声子谱,附批处理脚本
java·前端·数据库·人工智能·python
json{shen:"jing"}1 小时前
js收官总概述
开发语言·python