1
0
mirror of https://github.com/xiaoqidun/goenv.git synced 2025-04-05 03:37:54 +08:00

feat(打包镜像): 为镜像安装wget

This commit is contained in:
2023-07-12 10:33:19 +08:00
parent 3742865087
commit c8f32acd2e

@ -9,7 +9,8 @@ steps:
pull: if-not-exists
image: debian
commands:
- wget -4 -q -T 180 https://dl.google.com/android/repository/android-ndk-r25c-linux.zip
- apt-get update && apt-get install -y wget && rm -rf /var/lib/apt/lists/*
- wget -q -T 180 -4 https://dl.google.com/android/repository/android-ndk-r25c-linux.zip
- unzip -q android-ndk-r25c-linux.zip
- rm -f android-ndk-r25c-linux.zip
- name: docker-cn