CoolFace
Apppublic

phoenixedge/Genai_Requirement_Estimation

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
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"]