first init

This commit is contained in:
Power BI Dev
2026-06-04 08:33:41 +07:00
commit f62a711f5d
13 changed files with 893 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
gcc \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ ./src/
CMD ["python", "src/main.py"]