Spaces:
Runtime error
Runtime error
FROM python:3.11.1-slim | |
WORKDIR /app | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY . . | |
# Expose port 8502 to the outside world | |
EXPOSE 8000 | |
# Command to run the Streamlit app on port 8502 | |
CMD ["streamlit", "run", "app.py", "--server.port", "8502"] | |