2025-12-15 06:24:58 +00:00
|
|
|
|
# Dockerfile for packaging DragonOS build artifacts
|
|
|
|
|
|
# This image is used as a storage medium for build artifacts
|
|
|
|
|
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
|
|
|
2025-12-15 07:19:42 +00:00
|
|
|
|
# 复制压缩的构建产物到镜像中
|
|
|
|
|
|
COPY bin/dragonos-artifacts.tar.gz /artifacts/dragonos-artifacts.tar.gz
|
2025-12-15 06:24:58 +00:00
|
|
|
|
|
|
|
|
|
|
# 添加元数据标签
|
|
|
|
|
|
LABEL org.opencontainers.image.title="DragonOS Build Artifacts"
|
2025-12-15 07:19:42 +00:00
|
|
|
|
LABEL org.opencontainers.image.description="DragonOS nightly build artifacts: compressed archive containing kernel.elf and disk-image-x86_64.img"
|
2025-12-15 06:24:58 +00:00
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/DragonOS-Community/DragonOS"
|
|
|
|
|
|
|
|
|
|
|
|
# 设置工作目录(虽然 scratch 镜像没有 shell,但保留这个信息用于文档)
|
|
|
|
|
|
WORKDIR /artifacts
|
|
|
|
|
|
|