Command_RTC / Dockerfile
RSHVR's picture
Create Dockerfile
e2eab0b verified
raw
history blame
438 Bytes
FROM python:3.10
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Clone and install HumAware-VAD
RUN git clone https://github.com/CuriousMonkey7/HumAwareVad.git && \
cd HumAwareVad && \
pip install -e . && \
cd ..
# Copy your application code
COPY . .
# Set environment variables
ENV PYTHONUNBUFFERED=1
# Run the application
CMD ["python", "app.py"]