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
+33
View File
@@ -0,0 +1,33 @@
FROM redroid/redroid:14.0.0-latest
# Install required packages
RUN apt-get update && apt-get install -y \
curl \
wget \
unzip \
openjdk-17-jdk \
android-tools-adb \
&& rm -rf /var/lib/apt/lists/*
# Set up Android SDK environment
ENV ANDROID_HOME=/opt/android-sdk
ENV PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/platform-tools
# Create working directory
WORKDIR /app
# Copy entrypoint script
COPY entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
# Create APK directory
RUN mkdir -p /app/apks
# Expose ADB ports
EXPOSE 5555 5556
# Health check - check if redroid is running
HEALTHCHECK --interval=30s --timeout=10s --retries=5 \
CMD curl -f http://localhost:5555/ || exit 1
ENTRYPOINT ["/app/entrypoint.sh"]