feat: PLANNING体系首版(00路线图/02任务总表/03执行协议/I-03/I-04/registry42口径)+M1止血交付
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user