Files
base/.devstar/Dockerfile.ubuntu-latest

11 lines
363 B
Docker
Raw Permalink Normal View History

2025-12-23 14:25:32 +08:00
FROM docker.io/library/ubuntu:latest
# 安装开发工具合并RUN层减少镜像大小
RUN apt-get update && apt-get install -y \
build-essential gdb git\
openssh-server \
bash sudo \
curl wget \
ca-certificates \
apt remove --purge curl -y && apt autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*