Initial commit — Mek-Tech AI Consultancy Framework v2.0
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
FROM python:3.11-slim
|
||||
WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY . .
|
||||
ENV DB_PATH=/app/data/consulting.db
|
||||
ENV PY_PORT=3001
|
||||
EXPOSE 3001
|
||||
CMD ["python3", "app.py"]
|
||||
Reference in New Issue
Block a user