diff docker/backend-dev-e2e/Dockerfile @ 3641:0ffaa231138c

docker: Libervia revision can now be specified: Using the `DOCKER_LIBERVIA_REV` environment variable, backend (and related repos) revision can now be specified. By default (variable empty or not set), the current `tip` version is used, and `dev` is used for tagging. If the variable is set, the revision will be used and used for tagging the image.
author Goffi <goffi@goffi.org>
date Wed, 08 Sep 2021 11:14:17 +0200
parents 73e04040d577
children 9c50d2f812c1 d5fd630b57bb
line wrap: on
line diff
--- a/docker/backend-dev-e2e/Dockerfile	Wed Sep 08 11:13:35 2021 +0200
+++ b/docker/backend-dev-e2e/Dockerfile	Wed Sep 08 11:14:17 2021 +0200
@@ -1,4 +1,5 @@
-FROM libervia/backend:dev
+ARG REVISION=dev
+FROM libervia/backend:${REVISION}
 
 LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>"
 
@@ -46,7 +47,7 @@
 RUN \
     # pytest and its plugins
     pip install pytest pytest-timeout pytest-dependency \
-    # needed to test jp
+    # needed to test libervia-cli
     sh \
     # needed to test libervia
     helium \
@@ -57,7 +58,7 @@
 
 RUN ./entrypoint.sh \
     # we create the file sharing component which will autoconnect when backend is started
-    jp profile create file_sharing -j files.server1.test -p "" --xmpp-password test_e2e -C file_sharing -A && \
+    li profile create file_sharing -j files.server1.test -p "" --xmpp-password test_e2e -C file_sharing -A && \
     libervia-backend stop
 
 ENV LIBERVIA_TEST_REPORT_DIR=/reports