Mercurial > libervia-backend
comparison 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 |
comparison
equal
deleted
inserted
replaced
3729:86eea17cafa7 | 3730:43cc8c27adc7 |
---|---|
25 | 25 |
26 USER libervia | 26 USER libervia |
27 RUN python3 -m venv libervia_env && libervia_env/bin/pip install -U pip wheel && cd /src && \ | 27 RUN python3 -m venv libervia_env && libervia_env/bin/pip install -U pip wheel && cd /src && \ |
28 # we install thoses packages in editable mode, so we can replace them easily with volumes | 28 # we install thoses packages in editable mode, so we can replace them easily with volumes |
29 hg clone https://repos.goffi.org/sat_tmp && ~/libervia_env/bin/pip install -e sat_tmp && \ | 29 hg clone https://repos.goffi.org/sat_tmp && ~/libervia_env/bin/pip install -e sat_tmp && \ |
30 mv sat_tmp/sat_tmp.egg-info ~/libervia_env/lib/python3.*/site-packages && \ | 30 hg clone https://repos.goffi.org/sat_pubsub && ~/libervia_env/bin/pip install -e sat_pubsub |
31 hg clone https://repos.goffi.org/sat_pubsub && ~/libervia_env/bin/pip install -e sat_pubsub && \ | |
32 mv sat_pubsub/sat_pubsub.egg-info ~/libervia_env/lib/python3.*/site-packages | |
33 | 31 |
34 ENTRYPOINT ["/home/libervia/entrypoint.sh"] | 32 ENTRYPOINT ["/home/libervia/entrypoint.sh"] |