Spaces:
Running
Running
File size: 348 Bytes
5f2b17b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Use the official Python image from Docker Hub
FROM python:3.10
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Command to run the Streamlit app
CMD ["streamlit", "run", "app.py"]
|