Spaces:
Runtime error
Runtime error
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"] |