Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +33 -25
Dockerfile
CHANGED
@@ -1,26 +1,34 @@
|
|
1 |
-
FROM python:3.9-slim
|
2 |
-
|
3 |
-
WORKDIR /code
|
4 |
-
|
5 |
-
# Install system dependencies
|
6 |
-
RUN apt-get update && apt-get install -y \
|
7 |
-
build-essential \
|
8 |
-
curl \
|
9 |
-
software-properties-common \
|
10 |
-
git \
|
11 |
-
&& rm -rf /var/lib/apt/lists/*
|
12 |
-
|
13 |
-
#
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
CMD ["python", "app.py"]
|
|
|
1 |
+
FROM python:3.9-slim
|
2 |
+
|
3 |
+
WORKDIR /code
|
4 |
+
|
5 |
+
# Install system dependencies
|
6 |
+
RUN apt-get update && apt-get install -y \
|
7 |
+
build-essential \
|
8 |
+
curl \
|
9 |
+
software-properties-common \
|
10 |
+
git \
|
11 |
+
&& rm -rf /var/lib/apt/lists/*
|
12 |
+
|
13 |
+
# Create cache directory with proper permissions
|
14 |
+
RUN mkdir -p /root/.cache/huggingface && \
|
15 |
+
chmod -R 777 /root/.cache
|
16 |
+
|
17 |
+
# Set environment variables
|
18 |
+
ENV TRANSFORMERS_CACHE=/root/.cache/huggingface
|
19 |
+
ENV HF_HOME=/root/.cache/huggingface
|
20 |
+
|
21 |
+
# Copy requirements first for better caching
|
22 |
+
COPY requirements.txt .
|
23 |
+
|
24 |
+
# Install Python dependencies
|
25 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
26 |
+
|
27 |
+
# Copy the rest of the application
|
28 |
+
COPY . .
|
29 |
+
|
30 |
+
# Make port 7860 available
|
31 |
+
EXPOSE 7860
|
32 |
+
|
33 |
+
# Run the application
|
34 |
CMD ["python", "app.py"]
|