changeset 3385:bcdfe7905409

docker (backend_e2e): install pytest and sh
author Goffi <goffi@goffi.org>
date Thu, 12 Nov 2020 14:53:15 +0100
parents f4386002f30f
children 129cc3e16825
files docker/backend_e2e/Dockerfile
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
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