1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 16:19:03 +08:00

Fix: Install missing dependencies for new docker image (#2182)

Co-authored-by: LmeSzinc <37934724+LmeSzinc@users.noreply.github.com>
This commit is contained in:
orangesoup 2023-01-29 02:12:30 +08:00 committed by GitHub
parent b17d9b2c26
commit cc54e0663f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ENV PATH=${CONDA_DIR}/bin:${PATH}
# Install dependencies
RUN apt update && \
apt install -y netcat unzip wget
apt install --no-install-recommends -y netcat unzip wget bzip2 ca-certificates git tini
# Install mambaforge
RUN wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh && \

View File

@ -6,7 +6,7 @@ ENV PATH=${CONDA_DIR}/bin:${PATH}
# Install dependencies
RUN apt update && \
apt install -y netcat unzip wget
apt install --no-install-recommends -y netcat unzip wget bzip2 ca-certificates git tini
# Install mambaforge
RUN wget https://ghproxy.com/https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh && \