Skip to content

Commit

Permalink
airtest3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aozhuochao committed Aug 29, 2024
1 parent 5e24208 commit 7d5b662
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions airtest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM python:3
FROM python:3.6


# ARG PIP_ARGS
Expand All @@ -15,16 +15,17 @@ FROM python:3
# COPY wireless_connect.sh /wireless_connect.sh


RUN pip install --no-cache-dir pocoui \
&& pip install --no-cache-dir airtest \
&& rm -Rf /var/log/* \
&& echo "pip结束" \
&& apt update \
RUN apt update \
&& apt install -y adb libgl1-mesa-glx \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& apt-get clean \
&& rm -Rf /var/log/* \
&& echo "结束"
&& echo "apt结束"

RUN pip install --no-cache-dir airtest \
&& pip install --no-cache-dir pocoui \
&& rm -Rf /var/log/* \
&& echo "pip结束" \


# 保存授权
Expand Down

0 comments on commit 7d5b662

Please sign in to comment.