SalesAI / Dockerfile
Zasha1's picture
Update Dockerfile
0e6afd0 verified
raw
history blame
613 Bytes
# Use the Hugging Face Spaces base image
FROM huggingface/platform:latest
# Install system dependencies for PyAudio
RUN apt-get update && apt-get install -y \
portaudio19-dev \
python3-pyaudio \
python3-dev \
build-essential \
&& apt-get clean
# Set the working directory inside the container
WORKDIR /app
# Copy all project files into the container
COPY . /app
# Install Python dependencies
RUN pip install --no-cache-dir pyaudio
# Expose the Streamlit default port
EXPOSE 8501
# Run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]