File size: 334 Bytes
362d662 d23ba8f 362d662 d23ba8f 362d662 d23ba8f 362d662 d23ba8f 362d662 1f9592b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Use a minimal base image with Python
FROM python:3.9-slim
# Set the working directory
WORKDIR /app
# Copy all files from the local directory to the container
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0"]
|