File size: 773 Bytes
876b12f
 
 
 
 
 
2f25629
 
 
b77d4af
 
 
 
876b12f
 
b77d4af
876b12f
 
 
 
 
 
 
2f25629
 
 
876b12f
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Use Python Slim Image
FROM python:3.10-slim

# Set working directory inside container
WORKDIR /app

# Create a writable cache directory for Hugging Face
RUN mkdir -p /app/.cache/huggingface/hub && chmod -R 777 /app/.cache

# Install supabase-py directly from GitHub
RUN pip install --upgrade pip
RUN pip install git+https://github.com/supabase/supabase-py.git

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

# Copy all files
COPY . .

# Set PYTHONPATH (simplified)
ENV PYTHONPATH=/app

# Set the Hugging Face transformers cache directory
ENV TRANSFORMERS_CACHE=/app/.cache/huggingface/hub

# Expose FastAPI's default port
EXPOSE 7860

# Start FastAPI
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]