Spaces:
Runtime error
Runtime error
File size: 534 Bytes
64416ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Use the official Python image as the base
FROM python:3.8-slim-buster
# Set the working directory in the container
WORKDIR /app
# Copy the requirements.txt file to the working directory
COPY requirements.txt .
# Install the Python dependencies
RUN pip install -r requirements.txt
# Copy the app code to the working directory
COPY . .
# Expose the port on which your Streamlit app is running (change if necessary)
EXPOSE 7860
# Set the command to run the Streamlit app
CMD ["streamlit", "run", "01_🎥_Input_YouTube_Link.py"]
|