1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 03:58:22 +08:00

Fix: Installations in containers have no access to remote access (#4595)

This commit is contained in:
Jack77793
2025-02-19 00:55:45 +08:00
committed by GitHub
parent 9ddbe2eadf
commit 93080400df
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ COPY requirements.txt /tmp/requirements.txt
# Initial download of UiAutomator2 is slow outside of China using appetizer mirror, switch to GitHub
RUN apt update \
&& apt install -y git adb libgomp1 \
&& apt install -y git adb libgomp1 openssh-client \
&& git config --global --add safe.directory '*' \
&& pip install -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt \