virtual_therapist / Dockerfile
usmanyousaf's picture
Update Dockerfile
ee09b50 verified
raw
history blame
405 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy application files
COPY . /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
libsndfile1 \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run the application
CMD ["python", "app:app", "--host", "0.0.0.0", "--port", "7860"]