Skip to content

Commit 08dd6f6

Browse files
committed
fix ownership path in codeserver/ubi9-python-3.12 Dockerfile for consistency
``` [Checking permissions of the: /opt/app-root/share] _ tests/containers/base_image_test.py:240: in test_fn assert cleaned_output == f"{item[1]}:{item[2]}:{item[3]}" E AssertionError: assert '755:0:0' == '775:0:1001' E E - 775:0:1001 E + 755:0:0 ```
1 parent 7f6bf60 commit 08dd6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeserver/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
236236
# Build debugpy from source instead
237237
uv pip install --no-cache git+https://github.com/microsoft/debugpy.git@v$(grep -A1 '\"debugpy\"' ./pylock.toml | grep -Eo '\b[0-9\.]+\b') && \
238238
# change ownership to default user (all packages were installed as root and has root:root ownership \
239-
chown -R 1001:0 /opt/app-root/lib
239+
chown -R 1001:0 /opt/app-root
240240

241241
USER 1001
242242

0 commit comments

Comments
 (0)