Skip to content

Commit ee3c2d3

Browse files
committed
Issue #476 - Dynamic dependency installation doesn't work for other UID/GID runners
1 parent 40daee8 commit ee3c2d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ ENV PATH=/opt/robotframework/bin:/opt/robotframework/drivers:$PATH
160160

161161
# Ensure the directory for Python dependencies exists
162162
RUN mkdir -p ${ROBOT_DEPENDENCY_DIR} \
163-
&& chown ${ROBOT_UID}:${ROBOT_GID} ${ROBOT_DEPENDENCY_DIR}
163+
&& chown ${ROBOT_UID}:${ROBOT_GID} ${ROBOT_DEPENDENCY_DIR} \
164+
&& chmod 777 ${ROBOT_DEPENDENCY_DIR}
164165

165166
# Set up a volume for the generated reports
166167
VOLUME ${ROBOT_REPORTS_DIR}

0 commit comments

Comments
 (0)