Initial commit: Antigravity Agent Core
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user