sksameermujahid commited on
Commit
881b45d
·
verified ·
1 Parent(s): a1a0810

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- # Copy requirements first for better caching
14
- COPY requirements.txt .
15
-
16
- # Install Python dependencies
17
- RUN pip install --no-cache-dir -r requirements.txt
18
-
19
- # Copy the rest of the application
20
- COPY . .
21
-
22
- # Make port 7860 available
23
- EXPOSE 7860
24
-
25
- # Run the application
 
 
 
 
 
 
 
 
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"]