changeset 3690:1680eec4cbfd

docker: use `@` instead of `tip` for dev images: `tip` links to most recent commit which may be on an other bookmark than the main one. By using `@`, we're sure that the main bookmark is used.
author Goffi <goffi@goffi.org>
date Wed, 20 Oct 2021 17:23:22 +0200
parents f25442794e11
children bb19703af326
files docker/backend-dev/Dockerfile docker/libervia-web-dev/Dockerfile
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/docker/backend-dev/Dockerfile	Wed Oct 20 17:21:54 2021 +0200
+++ b/docker/backend-dev/Dockerfile	Wed Oct 20 17:23:22 2021 +0200
@@ -36,12 +36,12 @@
     # local repos without it them cause troubles
     hg clone https://repos.goffi.org/urwid-satext && ~/libervia_env/bin/pip install -e urwid-satext && \
     mv urwid-satext/urwid_satext.egg-info ~/libervia_env/lib/python3.*/site-packages && \
-    hg clone https://repos.goffi.org/sat_tmp -u "${REVISION:-tip}" && ~/libervia_env/bin/pip install -e sat_tmp && \
+    hg clone https://repos.goffi.org/sat_tmp -u "${REVISION:-@}" && ~/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/libervia-templates && ~/libervia_env/bin/pip install -e libervia-templates && \
     mv libervia-templates/libervia_templates.egg-info ~/libervia_env/lib/python3.*/site-packages && \
     hg clone https://repos.goffi.org/libervia-media && \
-    hg clone https://repos.goffi.org/libervia-backend -u "${REVISION:-tip}" && ~/libervia_env/bin/pip install -e 'libervia-backend[SVG]' && \
+    hg clone https://repos.goffi.org/libervia-backend -u "${REVISION:-@}" && ~/libervia_env/bin/pip install -e 'libervia-backend[SVG]' && \
     mv libervia-backend/libervia_backend.egg-info ~/libervia_env/lib/python3.*/site-packages && \
     mkdir -p /home/libervia/.local/share/libervia
 
--- a/docker/libervia-web-dev/Dockerfile	Wed Oct 20 17:21:54 2021 +0200
+++ b/docker/libervia-web-dev/Dockerfile	Wed Oct 20 17:23:22 2021 +0200
@@ -11,7 +11,7 @@
 RUN apt-get install -y --no-install-recommends yarnpkg
 WORKDIR /home/libervia
 USER libervia
-RUN cd /src && hg clone https://repos.goffi.org/libervia-web -u "${REVISION:-tip}" && \
+RUN cd /src && hg clone https://repos.goffi.org/libervia-web -u "${REVISION:-@}" && \
     ~/libervia_env/bin/pip install -e libervia-web && \
     mv libervia-web/libervia_web.egg-info ~/libervia_env/lib/python3.*/site-packages