fix seen bugs

This commit is contained in:
fly6516 2024-12-18 19:16:45 +08:00
parent dd8c9d33af
commit deb5f8d77e

View File

@ -1,16 +1,15 @@
LABEL authors="fly"
# LABEL authors="fly"
ENTRYPOINT ["top", "-b"]
# ENTRYPOINT ["top", "-b"]
# 使用 Ubuntu 作为基础镜像
FROM ubuntu:20.04
FROM dockerp.com/ubuntu:20.04
# 设置环境变量
ENV DEBIAN_FRONTEND=noninteractive
# 使用南京大学的 apt 源
RUN sed -i 's|http://archive.ubuntu.com/ubuntu/|https://mirror.nju.edu.cn/ubuntu/|g' /etc/apt/sources.list && \
sed -i 's|http://security.ubuntu.com/ubuntu/|https://mirror.nju.edu.cn/ubuntu/|g' /etc/apt/sources.list
RUN sed -i 's/archive.ubuntu.com/mirrors.nju.edu.cn/g' /etc/apt/sources.list
# 更新系统并安装常用工具
RUN apt-get update && apt-get install -y \
@ -23,9 +22,9 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# 安装 Node.js替换为南京大学的源
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
sed -i 's|deb.nodesource.com|mirror.nju.edu.cn/nodesource/deb|g' /etc/apt/sources.list.d/nodesource.list && \
apt-get update && apt-get install -y nodejs
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
# sed -i 's|deb.nodesource.com|mirror.nju.edu.cn/nodesource/deb|g' /etc/apt/sources.list.d/nodesource.list && \
apt-get update && apt-get install -y nodejs && npm config set registry https://repo.nju.edu.cn/repository/npm/ # 修改源
# 安装其他语言的编译器和工具
RUN apt-get update && apt-get install -y \