vikas0615's picture
Update Dockerfile
cf84cdf verified
raw
history blame contribute delete
493 Bytes
FROM python:3.9-slim
# Set environment variables
ENV HOME=/app
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
# Copy all files into the container
COPY . /app
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port Streamlit uses
EXPOSE 7860
# Run the Streamlit app
CMD ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0"]