diff docker/pubsub/Dockerfile @ 3730:43cc8c27adc7

docker: don't move `.egg_info` files anymore: moving `.egg_info` cause trouble, and doesn't seem necessary anymore.
author Goffi <goffi@goffi.org>
date Mon, 31 Jan 2022 18:35:52 +0100
parents 0422c735db56
children 31c84a32c897
line wrap: on
line diff
--- a/docker/pubsub/Dockerfile	Mon Jan 31 18:35:49 2022 +0100
+++ b/docker/pubsub/Dockerfile	Mon Jan 31 18:35:52 2022 +0100
@@ -27,8 +27,6 @@
 RUN python3 -m venv libervia_env && libervia_env/bin/pip install -U pip wheel && cd /src && \
     # we install thoses packages in editable mode, so we can replace them easily with volumes
     hg clone https://repos.goffi.org/sat_tmp && ~/libervia_env/bin/pip install -e sat_tmp && \
-    mv sat_tmp/sat_tmp.egg-info ~/libervia_env/lib/python3.*/site-packages && \
-    hg clone https://repos.goffi.org/sat_pubsub && ~/libervia_env/bin/pip install -e sat_pubsub && \
-    mv sat_pubsub/sat_pubsub.egg-info ~/libervia_env/lib/python3.*/site-packages
+    hg clone https://repos.goffi.org/sat_pubsub && ~/libervia_env/bin/pip install -e sat_pubsub
 
 ENTRYPOINT ["/home/libervia/entrypoint.sh"]