Skip to content

Commit 34d7e19

Browse files
committed
Try fix aiidalab deps
1 parent 4d1f1d3 commit 34d7e19

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

stack/lab/Dockerfile

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@ RUN apt-get update --yes && \
2222

2323
# Install aiidalab package
2424
ARG AIIDALAB_VERSION
25-
RUN mamba install --yes \
26-
aiidalab=${AIIDALAB_VERSION} \
27-
&& mamba clean --all -f -y && \
28-
fix-permissions "${CONDA_DIR}" && \
29-
fix-permissions "/home/${NB_USER}"
25+
#RUN mamba install --yes \
26+
# aiidalab=${AIIDALAB_VERSION} \
27+
# && mamba clean --all -f -y && \
28+
# fix-permissions "${CONDA_DIR}" && \
29+
# fix-permissions "/home/${NB_USER}"
30+
RUN git clone -b update-watchdog https://github.com/aiidalab/aiidalab.git && \
31+
cd aiidalab && pip install .
3032

3133
# Pin aiidalab version.
32-
RUN echo "aiidalab==${AIIDALAB_VERSION}" >> /opt/requirements.txt
33-
RUN conda config --system --add pinned_packages "aiidalab=${AIIDALAB_VERSION}"
34+
#RUN echo "aiidalab==${AIIDALAB_VERSION}" >> /opt/requirements.txt
35+
#RUN conda config --system --add pinned_packages "aiidalab=${AIIDALAB_VERSION}"
3436

3537
# Install the aiidalab-home app.
3638
ARG AIIDALAB_HOME_VERSION

0 commit comments

Comments
 (0)