Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/docker-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if [ -n "${CLAUDEBOX_PROJECT_NAME:-}" ]; then
runuser -u DOCKERUSER -- touch "$VENV_FLAG"
else
# Someone else is fixing it, wait for completion
local wait_count=0
wait_count=0
while [ ! -f "$VENV_FLAG" ] && [ $wait_count -lt 60 ]; do
sleep 0.5
((wait_count++)) || true
Expand All @@ -106,7 +106,7 @@ if [ -n "${CLAUDEBOX_PROJECT_NAME:-}" ]; then
runuser -u DOCKERUSER -- touch "$VENV_FLAG"
else
# Someone else is creating it, wait for completion flag
local wait_count=0
wait_count=0
while [ ! -f "$VENV_FLAG" ] && [ $wait_count -lt 60 ]; do
sleep 0.5
((wait_count++)) || true
Expand Down Expand Up @@ -138,7 +138,7 @@ if [ -n "${CLAUDEBOX_PROJECT_NAME:-}" ]; then
if [ -f "$CONFIG_FILE" ] && grep -qE 'python|ml|datascience' "$CONFIG_FILE"; then
if [ ! -f "$PYDEV_FLAG" ] && [ -f "$VENV_FLAG" ] && [ -d "$VENV_DIR" ]; then
# Deploy Python dev tools based on profile
local python_packages=""
python_packages=""

# Base Python profile packages
if grep -q 'python' "$CONFIG_FILE"; then
Expand Down