Spaces:
Sleeping
Sleeping
File size: 446 Bytes
b1c0e01 149f857 9933294 149f857 9933294 149f857 9933294 149f857 9933294 149f857 9933294 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM python:3.11-slim
# Set the working directory inside the container
WORKDIR /app
# Copy all files from the current directory to the container's working directory
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port Streamlit runs on
EXPOSE 8501
# Command to run the Streamlit application
CMD ["streamlit", "run", "streamlit_app.py", "--server.port", "8501", "--server.address", "0.0.0.0"]
|