File size: 702 Bytes
2544818
 
 
 
 
 
e6cd926
 
2544818
 
 
 
28e02a4
d99f5d9
2544818
 
 
 
 
 
 
 
 
 
 
e6cd926
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
# Use the official Python image from Docker Hub
FROM python:3.10-slim

# Set the working directory
WORKDIR /app

EXPOSE 7860

# Copy the requirements file into the container
COPY requirements.txt .

# Install dependencies
RUN pip install torch --index-url https://download.pytorch.org/whl/cpu
RUN pip install transformers
RUN pip install --no-cache-dir -r requirements.txt

# COPY .env /app/.env

# Copy the current directory contents into the container at /app
COPY . .
RUN mkdir -p /app/cache && chmod 777 /app/cache
RUN mkdir -p /app/cache/hub
ENV HF_HOME=/app/cache
ENV TRANSFORMERS_CACHE=/app/cache
# Command to run the FastAPI app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]