diff --git a/deploy-clock.sh b/deploy-clock.sh index 76c972c..1cfb595 100755 --- a/deploy-clock.sh +++ b/deploy-clock.sh @@ -113,16 +113,6 @@ if [ ! -f "docker-compose.yml" ]; then fail "docker-compose.yml not found in $REPO_DIR" fi -# Run docker-prep.sh to package dependencies -if [ -f "scripts/docker-prep.sh" ]; then - log "Running docker-prep.sh to package dependencies..." - chmod +x scripts/docker-prep.sh - ./scripts/docker-prep.sh || fail "docker-prep.sh failed" - ok "Dependencies packaged successfully" -else - fail "docker-prep.sh not found in $REPO_DIR/scripts/" -fi - # Build and start services log "Building Docker images..." docker compose build || fail "Docker build failed" diff --git a/deploy-notes.sh b/deploy-notes.sh index 99c82c1..a50032a 100755 --- a/deploy-notes.sh +++ b/deploy-notes.sh @@ -113,16 +113,6 @@ if [ ! -f "docker-compose.yml" ]; then fail "docker-compose.yml not found in $REPO_DIR" fi -# Run docker-prep.sh to package dependencies -if [ -f "scripts/docker-prep.sh" ]; then - log "Running docker-prep.sh to package dependencies..." - chmod +x scripts/docker-prep.sh - ./scripts/docker-prep.sh || fail "docker-prep.sh failed" - ok "Dependencies packaged successfully" -else - fail "docker-prep.sh not found in $REPO_DIR/scripts/" -fi - # Build and start services log "Building Docker images..." docker compose build || fail "Docker build failed"