Initial commit: Antigravity Agent Core

This commit is contained in:
serhiimosiiash
2025-12-19 10:44:46 +02:00
commit 3ef303395f
5 changed files with 56 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.9-slim
WORKDIR /app
# Встановлюємо бібліотеки для Postgres
RUN apt-get update && apt-get install -y libpq-dev gcc && rm -rf /var/lib/apt/lists/*
# Залежності
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Код
COPY . .
CMD ["python", "main.py"]