Spaces:
Runtime error
Runtime error
File size: 374 Bytes
56e52b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM python:3.10
RUN pip install virtualenv
ENV VIRTUAL_ENV=/venv
RUN virtualenv venv -p python3
ENV PATH="VIRTUAL_ENV/bin:$PATH"
WORKDIR /app
ADD . /app
# Install dependencies
RUN pip install -r requirements.txt
RUN apt-get update
RUN apt-get install -y ffmpeg
# Expose port
ENV PORT 8501
# Run the application:
CMD ["streamlit","run","01_🎥_Input_YouTube_Link.py"] |