mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 14:17:46 +00:00
fix: build openedx-dev image when host user is root
Sometimes, the host user is root: this may happen when tutor is run with "sudo" (which is not recommended) or on Windows. In such cases, building the image should not fail, but default to a reasonable user. Also, when we pass an invalid APP_USER_ID as a build arg, then we should fail with an explicit message. See this conversation: https://discuss.overhang.io/t/problem-with-dev-image-build-useradd-uid-0-is-not-unique/2406
This commit is contained in:
parent
ac3b4e3065
commit
5b5700eff4
@ -17,6 +17,8 @@ Every user-facing change should have an entry in this changelog. Please respect
|
||||
-->
|
||||
|
||||
## Unreleased
|
||||
|
||||
- [Bugfix] Build openedx-dev Docker image even when the host user is root, for instance on Windows. (by @regisb)
|
||||
- [Bugfix] Patch nutmeg.1 release with [LTI 1.3 fix](https://github.com/openedx/edx-platform/pull/30716). (by @ormsbee)
|
||||
- [Improvement] Make it possible to override k8s resources in plugins using `k8s-override` patch. (by @foadlind)
|
||||
|
||||
|
@ -140,7 +140,9 @@ RUN apt update && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# From then on, run as unprivileged "app" user
|
||||
# Note that this must always be different from root (APP_USER_ID=0)
|
||||
ARG APP_USER_ID=1000
|
||||
RUN if [ "$APP_USER_ID" = 0 ]; then echo "app user may not be root" && false; fi
|
||||
RUN useradd --home-dir /openedx --create-home --shell /bin/bash --uid ${APP_USER_ID} app
|
||||
USER ${APP_USER_ID}
|
||||
|
||||
|
@ -7,7 +7,8 @@ x-openedx-service:
|
||||
context: ../build/openedx/
|
||||
target: development
|
||||
args:
|
||||
APP_USER_ID: "{{ HOST_USER_ID }}"
|
||||
# Note that we never build the openedx-dev image with root user ID, as it would simply fail.
|
||||
APP_USER_ID: "{{ HOST_USER_ID or 1000 }}"
|
||||
stdin_open: true
|
||||
tty: true
|
||||
volumes:
|
||||
|
Loading…
Reference in New Issue
Block a user