Add boto3 to Docker image for authenticated S3/MinIO downloads

This commit is contained in:
2026-03-23 16:53:21 +01:00
parent 9d132c308d
commit c0f82a2055

View File

@@ -19,7 +19,7 @@ RUN git clone https://github.com/Mickdub/gvp.git \
# Create conda environment and install dependencies # Create conda environment and install dependencies
RUN conda create -n pocketminer python=3.9 -y && \ RUN conda create -n pocketminer python=3.9 -y && \
conda install -n pocketminer -c conda-forge \ conda install -n pocketminer -c conda-forge \
numpy scipy pandas tensorflow tqdm mdtraj pyyaml -y && \ numpy scipy pandas tensorflow tqdm mdtraj pyyaml boto3 -y && \
conda clean -afy conda clean -afy
# Activate environment and set up PATH # Activate environment and set up PATH