llama-models / Dockerfile
deniskiplimo816's picture
Upload 27 files
293ab16 verified
raw
history blame contribute delete
345 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y build-essential ffmpeg git && \
pip install --no-cache-dir -r requirements.txt
EXPOSE 8000 8501
CMD ["bash", "-c", "uvicorn main:app --host 0.0.0.0 --port 8000 & streamlit run frontend/streamlit_app.py --server.port 8501 --server.address 0.0.0.0"]