We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33de216 commit 6852cb5Copy full SHA for 6852cb5
Dockerfile
@@ -109,6 +109,10 @@ RUN mkdir -p ${ROBOT_REPORTS_DIR} \
109
&& chown ${ROBOT_UID}:${ROBOT_GID} ${ROBOT_WORK_DIR} \
110
&& chmod ugo+w ${ROBOT_REPORTS_DIR} ${ROBOT_WORK_DIR}
111
112
+# Allow any user to write logs
113
+RUN chmod ugo+w /var/log \
114
+ && chown ${ROBOT_UID}:${ROBOT_GID} /var/log
115
+
116
# Update system path
117
ENV PATH=/opt/robotframework/bin:/opt/robotframework/drivers:$PATH
118
bin/run-tests-in-virtual-screen.sh
@@ -1,5 +1,7 @@
1
#!/bin/sh
2
3
+HOME=${ROBOT_WORK_DIR}
4
5
# No need for the overhead of Pabot if no parallelisation is required
6
if [ $ROBOT_THREADS -eq 1 ]
7
then
0 commit comments