mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2026-05-12 12:15:00 +00:00
✅ Local build verified successfully ✅ Environment variables complete ✅ CI/CD workflows updated ✅ Build process simplified (source copy vs git clone) ✅ All production-readiness fixes applied Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
18 lines
304 B
Bash
Executable File
18 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
export TZ='America/New York'
|
|
|
|
apt-get update && apt-get upgrade -y
|
|
apt-get install openssh-client \
|
|
python3-dev \
|
|
python3-full \
|
|
python3-venv \
|
|
python3-pip \
|
|
git \
|
|
postgresql \
|
|
supervisor \
|
|
g++ \
|
|
gcc \
|
|
locales -y
|