phoenixedge/Genai_Requirement_Estimation
0
1# Base image2FROM python:3.11-slim3 4# Set the working directory5WORKDIR /app6 7# Copy application files8COPY . /app9 10# Install dependencies11RUN pip install --no-cache-dir -r requirements.txt12 13# Expose the port your app runs on14EXPOSE 786015 16# Command to run the application17CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]