maitykritadhi's picture
Upload 3 files
63da8c0 verified
raw
history blame contribute delete
302 Bytes
FROM python:3.11.1-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Expose port 8502 to the outside world
EXPOSE 8000
# Command to run the Streamlit app on port 8502
CMD ["streamlit", "run", "app.py", "--server.port", "8502"]