peteralexandercharles's picture
Upload 9 files
56e52b4
raw
history blame contribute delete
374 Bytes
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"]