aiidalab / aiidalab-docker-stack

Docker images with the basic software stack for AiiDAlab
https://aiidalab.net
Other
9 stars 14 forks source link

issues when building locally #59

Closed adegomme closed 4 years ago

adegomme commented 4 years ago

Hi, I was trying to build the develop branch locally (to check if adding the bigdft plugin was working). I encountered few issues when launching the container.

The only thing I change in the recipe is using pip install -e to install aiidalab package from a repository instead of pip, so the diff is basically

+COPY opt/aiidalab /opt/aiidalab
+RUN pip install -e /opt/aiidalab
+
 RUN pip install                    \
-    'aiidalab==v20.03.0b2'         \

with opt/aiidalab being a clone of https://github.com/aiidalab/aiidalab with just the aiida-bigdft plugin added.

Edit: and I confirm that undoing all the changes (using the dockerfile from this repo) does not fix things, I still get a 404.

Any idea where this could come from ?

yakutovicha commented 4 years ago

Thanks for the report @adegomme. I replaced md5 with openssl which seem to be more generic (see #65). I tried to build it on my old ubuntu laptop (both with pulling the image and building it locally) and it all went just fine.

Can you please pull the repo, switch to the fix_run_aiidalab_for_ubuntu branch and try to rerun the run_aiidalab.sh script. Also please make sure that the folder you mount is empty (just to have a clean experiment).

Let me know.

yakutovicha commented 4 years ago

@adegomme please reopen if the issue persists.

adegomme commented 4 years ago

Sorry about the delay, both issues seem indeed fixed now. Thanks a lot !