初步规划devstar模板

This commit is contained in:
2025-12-23 14:25:32 +08:00
parent 76c53e83d1
commit 23a9c87287
6 changed files with 49 additions and 61 deletions

View File

@@ -0,0 +1,13 @@
FROM docker.io/library/alpine:latest
# 安装开发工具合并RUN层减少镜像大小
RUN apk add --no-cache \
build-base \
openssh-server openssh-keygen openssh-client \
openrc \
git \
bash \
curl \
ca-certificates \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*