File size: 455 Bytes
0e8d7f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d2c471e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Use official Python runtime as a parent image
FROM python:3.10-slim

# Set working directory
WORKDIR /app

# Copy requirements.txt and install dependencies
COPY requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt

# Copy the application code
COPY openai_wrapper.py .

# Expose port 8000 for the FastAPI app
EXPOSE 7860

# Command to run the app with uvicorn
CMD ["uvicorn", "openai_wrapper:app", "--host", "0.0.0.0", "--port", "7860"]