Spaces:
Running
Running
File size: 490 Bytes
e96834f 6575838 e96834f 6575838 e96834f 6575838 e96834f 6575838 e96834f 6575838 e96834f 6575838 e96834f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Use an official Python runtime as a parent image
FROM python:3.10-slim
# Set the working directory in the container
WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .
# Install your dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of your app's code
COPY . .
# Expose the port Streamlit runs on
EXPOSE 8501
# Command to run your app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] |