bangdim-ai / Dockerfile
KazuX-1
Initial commit: Bangdim AI Customer Service
3b7e70b
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]