File size: 847 Bytes
7f50045
 
c139d5e
7f50045
c139d5e
 
 
 
7f50045
 
 
c139d5e
7f50045
 
c139d5e
 
7f50045
c139d5e
9717fc2
 
c139d5e
 
 
7f50045
c139d5e
 
7f50045
 
c139d5e
7f50045
 
 
 
 
 
 
c139d5e
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
33
34
35
36
37
38
FROM python:3.11-slim

# Environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
    PYTHONUNBUFFERED=1 \
    TRANSFORMERS_CACHE=/app/cache \
    HF_HOME=/app/cache \
    MPLCONFIGDIR=/tmp

WORKDIR /app

# Copy the requirements file
COPY requirements.txt /app/

# Upgrade pip
RUN pip install --upgrade pip

# (Optional) Install any necessary system dependencies
#RUN apt-get update && apt-get install -y gcc libjpeg-dev zlib1g-dev && \
#    rm -rf /var/lib/apt/lists/*

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

# Create cache directory and set permissions
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
RUN chmod -R 777 /app

# Copy the application code
COPY . /app/

ENV FLASK_APP=app.py \
    FLASK_ENV=production

EXPOSE 7860

CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]