KunalThakare279 commited on
Commit
257bb1c
·
verified ·
1 Parent(s): 99d6add

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -9,9 +9,8 @@ WORKDIR /app
9
  # Copy the application files
10
  COPY . .
11
 
12
- # Create a huggingface cache directory in /app and grant permissions
13
- RUN mkdir -p /app/huggingface && chown -R appuser:appgroup /app/huggingface
14
 
 
15
  # Set the environment variable to point to the app directory
16
  ENV HF_HOME=/app/huggingface
17
 
 
9
  # Copy the application files
10
  COPY . .
11
 
 
 
12
 
13
+ RUN mkdir -p /app/huggingface && chmod 777 /app/huggingface
14
  # Set the environment variable to point to the app directory
15
  ENV HF_HOME=/app/huggingface
16