story-teller / Dockerfile
himanshudasmldl's picture
Upload 2 files
2260092 verified
raw
history blame contribute delete
480 Bytes
FROM python:3.13-slim
WORKDIR /app
# Install PortAudio + tools
RUN apt-get update && apt-get install -y \
portaudio19-dev \
libportaudio2 \
libportaudiocpp0 \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
COPY src/ ./src/
COPY app_ui ./app_ui/
RUN pip3 install -r requirements.txt
EXPOSE 8501
#HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
ENTRYPOINT ["streamlit", "run", "app_ui/index.py"]