diff docker/backend-dev-e2e/Dockerfile @ 3661:cbb988a6f507

merge bookmark `@`
author Goffi <goffi@goffi.org>
date Wed, 08 Sep 2021 11:20:37 +0200
parents 0ffaa231138c
children 9c50d2f812c1 d5fd630b57bb
line wrap: on
line diff
--- a/docker/backend-dev-e2e/Dockerfile	Wed Sep 01 15:25:02 2021 +0200
+++ b/docker/backend-dev-e2e/Dockerfile	Wed Sep 08 11:20:37 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