streamlit / Dockerfile
tharu22's picture
changed con
0abb763
raw
history blame contribute delete
405 Bytes
# Use a lightweight Python image as the base
FROM python:3.9-slim
# Set the working directory
WORKDIR /app
# Copy the project files to the container
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose Streamlit's default port
EXPOSE 7860
# Command to run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]