Oluwatoni commited on
Commit
ec239cb
1 Parent(s): 7e385dc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -5
Dockerfile CHANGED
@@ -2,11 +2,8 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
5
- # Create the cache directory
6
- RUN mkdir -p /code/hf_cache
7
-
8
- # Set the HF_HOME environment variable to the cache directory
9
- ENV HF_HOME=/code/hf_cache
10
 
11
  COPY ./requirements.txt /code/requirements.txt
12
 
 
2
 
3
  WORKDIR /code
4
 
5
+ # Set the HF_HOME environment variable to the working directory
6
+ ENV HF_HOME=/code
 
 
 
7
 
8
  COPY ./requirements.txt /code/requirements.txt
9