Spaces:
Sleeping
Sleeping
File size: 438 Bytes
cdf3e4e c8d76ce 02136c1 cdf3e4e c8d76ce 02136c1 cdf3e4e 02136c1 cdf3e4e 43e09ed 02136c1 cdf3e4e 02136c1 cdf3e4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use the official Python 3.11.6 image
FROM python:3.11.6
# Install Streamlit and other dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Copy the rest of the app
COPY . .
# Expose the port (optionnal, but cleaner)
EXPOSE 7860
# Set the working directory
WORKDIR /
# Start the Streamlit app
CMD ["streamlit", "run", "chat.py", "--server.port", "7860", "--server.address", "0.0.0.0"]
|