InsuranceVoiceBot / Dockerfile
Jiranuwat's picture
add dockerfile
240e0c7 verified
raw
history blame contribute delete
308 Bytes
FROM python:3.10-bookworm
RUN apt-get update && apt-get install -y \
git git-lfs ffmpeg libsm6 libxext6 cmake rsync libgl1 \
&& rm -rf /var/lib/apt/lists/* && git lfs install
COPY . /home/user/app
WORKDIR /home/user/app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]