diff docker/backend_e2e/Dockerfile @ 3385:bcdfe7905409

docker (backend_e2e): install pytest and sh
author Goffi <goffi@goffi.org>
date Thu, 12 Nov 2020 14:53:15 +0100
parents 127dde80a0a5
children f023f06fa344
line wrap: on
line diff
--- a/docker/backend_e2e/Dockerfile	Thu Nov 12 14:53:15 2020 +0100
+++ b/docker/backend_e2e/Dockerfile	Thu Nov 12 14:53:15 2020 +0100
@@ -15,6 +15,8 @@
 WORKDIR /home/sat
 USER sat
 
-# we create the file sharing component which will autoconnect when backend is started
-RUN ./entrypoint.sh jp profile create file_sharing -j files.server1.test -p "" --xmpp-password test_e2e -C file_sharing -A && \
-sat stop
+RUN pip install pytest sh
+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 && \
+    sat stop