Spaces:
Runtime error
Runtime error
File size: 388 Bytes
5694d5e 711c54b 9f2f376 5694d5e 711c54b 5694d5e 711c54b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Use a lightweight Python image
FROM python:3.10
# Set the working directory
WORKDIR /app
# Copy all files into the container
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt && pip install --upgrade pip
# Expose the port Streamlit runs on
EXPOSE 7531
# Command to run the app
CMD streamlit run app.py --server.port 7531 --server.address 0.0.0.0 |