- Ensure /workspaces directory exists and update ownership in Dockerfile

This commit is contained in:
Guillaume "B.B." Van Hemmen 2025-06-25 16:23:28 +00:00
parent 91fabbe9c4
commit c3e3eed0e3

View file

@ -40,6 +40,7 @@ RUN useradd -m -s /bin/bash -G sudo coder && \
# Configure shell environment
RUN echo "PS1='🐳 \[\033[1;36m\] \[\033[1;34m\]\W\[\033[0;35m\] \[\033[1;36m\]# \[\033[0m\]'" > /home/coder/.bashrc && \
mkdir -p /workspaces && \
chown coder:coder /home/coder/.bashrc && \
chown -R coder:coder /workspaces