streamlit / Dockerfile
tharu22's picture
url changed
c3792ad
raw
history blame
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 8501
# Command to run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]