Files
base/.devstar/Dockerfile.ubuntu-latest
2025-12-23 14:25:32 +08:00

11 lines
363 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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/*