vhr1007 commited on
Commit
fa9bed8
·
verified ·
1 Parent(s): 88a7359

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,10 +5,10 @@ FROM python:3.10.9
5
  WORKDIR /app
6
 
7
  # Set a writable directory for Hugging Face cache
8
- # ENV TRANSFORMERS_CACHE=/app/huggingface_cache
9
 
10
  # Create the cache directory
11
- #RUN mkdir -p /app/.cache/huggingface
12
 
13
  # Copy the current directory contents into the container at /app
14
  COPY . /app
 
5
  WORKDIR /app
6
 
7
  # Set a writable directory for Hugging Face cache
8
+ ENV TRANSFORMERS_CACHE=/app/huggingface_cache
9
 
10
  # Create the cache directory
11
+ RUN mkdir -p /app/.cache/huggingface
12
 
13
  # Copy the current directory contents into the container at /app
14
  COPY . /app