# Use an official lightweight Python image FROM python:3.11-slim # Set the working directory in the container WORKDIR /app # Copy the server script into the container COPY server.py /app/ # Install the required dependencies RUN pip install --no-cache-dir fastapi uvicorn httpx # Expose the port the app runs on EXPOSE 7860 # Command to run the application binding to 0.0.0.0 CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]