feat: PLANNING体系首版(00路线图/02任务总表/03执行协议/I-03/I-04/registry42口径)+M1止血交付

This commit is contained in:
2026-09-12 14:25:25 +08:00
commit 39af400fc8
472 changed files with 36277 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
FROM ubuntu:22.04
# Prevent interactive prompts
ENV DEBIAN_FRONTEND=noninteractive
# Install ADB and tools
RUN apt-get update && apt-get install -y \
curl \
wget \
unzip \
openjdk-17-jdk \
android-tools-adb \
android-tools-fastboot \
&& rm -rf /var/lib/apt/lists/*
# Create working directory
WORKDIR /app
# Copy scripts
COPY scripts /app/scripts
RUN chmod +x /app/scripts/*.sh
# Create APK directory
RUN mkdir -p /app/apks
ENTRYPOINT ["/app/scripts/entrypoint.sh"]