File size: 502 Bytes
64af8bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Use the official Python image
FROM python:3.9-slim

# Set the working directory
WORKDIR /app

# Copy files
COPY requirements.txt requirements.txt
COPY .env .env
COPY main.py main.py

# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Expose the application port
EXPOSE 7860

# Debugging: Show files and env variables
RUN ls -al && cat .env

# Run the FastAPI application using uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]