voice_chat_assistant / Dockerfile
Alirezamp's picture
Update Dockerfile
f856ca5 verified
raw
history blame contribute delete
209 Bytes
FROM python:latest
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
RUN apt-get update && \
apt-get install -y ffmpeg && \
apt-get clean
EXPOSE 8000:8000
CMD ["python", "-u", "server.py"]