ragilbuaj commited on
Commit
575faa0
·
1 Parent(s): 0d5773a

try fix dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +5 -1
  2. app.py +1 -0
Dockerfile CHANGED
@@ -8,11 +8,15 @@ WORKDIR /app
8
  COPY requirements.txt .
9
 
10
  # Install the dependencies
11
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
12
 
13
  # Create a writable cache directory
14
  RUN mkdir -p /app/.cache
15
 
 
 
 
 
16
  # Copy the rest of the application code into the container
17
  COPY . .
18
 
 
8
  COPY requirements.txt .
9
 
10
  # Install the dependencies
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Create a writable cache directory
14
  RUN mkdir -p /app/.cache
15
 
16
+ # Set environment variables for the cache directory
17
+ ENV TRANSFORMERS_CACHE=/app/.cache
18
+ ENV HF_HOME=/app/.cache
19
+
20
  # Copy the rest of the application code into the container
21
  COPY . .
22
 
app.py CHANGED
@@ -6,6 +6,7 @@ import os
6
 
7
  # Set the cache directory to a writable location
8
  os.environ['TRANSFORMERS_CACHE'] = '/app/.cache'
 
9
 
10
  # Inisialisasi model dan tokenizer
11
  model_name = "w11wo/indonesian-roberta-base-sentiment-classifier"
 
6
 
7
  # Set the cache directory to a writable location
8
  os.environ['TRANSFORMERS_CACHE'] = '/app/.cache'
9
+ os.environ['HF_HOME'] = '/app/.cache'
10
 
11
  # Inisialisasi model dan tokenizer
12
  model_name = "w11wo/indonesian-roberta-base-sentiment-classifier"