add authkey

This commit is contained in:
2024-02-22 20:40:24 +08:00
parent ede3f1f76f
commit 8a318485d5

View File

@@ -136,7 +136,7 @@ EOT
# install mojo
ENV PATH="/home/${CREATE_USER}/.local/bin:$PATH"
# A random default token
ARG AUTH_KEY=5ca1ab1e
ARG AUTH_KEY="mut_efe460b898e3482bb6208bfcd4a51d7e"
ENV AUTH_KEY=$AUTH_KEY
RUN curl https://get.modular.com | sh - && \
@@ -173,8 +173,6 @@ EOT
RUN <<EOT
#!/bin/bash
micromamba create -n mdgnn -c pytorch -c conda-forge python=3.9 pytorch=1.10.2 torchvision torchaudio cudatoolkit=11.3 pandas matplotlib seaborn scipy numpy=1.24.4 mdanalysis biopandas pymol-open-source ipykernel ipywidgets jupyter einops python-calamine scikit-learn -y
# micromamba run -n mdgnn python -m pip install einops python-calamine
# micromamba run -n mdgnn python -m pip install -U scikit-learn -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
micromamba run -n mdgnn python -m ipykernel install --user --name="mdgnn" --display-name="mdgnn Environment"
EOT