Skip to content

Commit

Permalink
Merge pull request #477 from ppodgorsek/issue-476
Browse files Browse the repository at this point in the history
Issue #476 - Dynamic dependency installation doesn't work for other UID/GID runners
  • Loading branch information
ppodgorsek authored Feb 7, 2024
2 parents 40daee8 + ee3c2d3 commit 2124493
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ ENV PATH=/opt/robotframework/bin:/opt/robotframework/drivers:$PATH

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

# Set up a volume for the generated reports
VOLUME ${ROBOT_REPORTS_DIR}
Expand Down

0 comments on commit 2124493

Please sign in to comment.