tillwenke commited on
Commit
bdbe70e
·
verified ·
1 Parent(s): c89cc6c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -7,6 +7,11 @@ RUN apt-get update && apt-get install -y \
7
  git \
8
  && rm -rf /var/lib/apt/lists/*
9
 
 
 
 
 
 
10
  COPY requirements.txt ./
11
  COPY run.py ./
12
 
 
7
  git \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
+ # Create a writable cache directory
11
+ ENV HF_HOME=/app/hf_cache
12
+
13
+ # Set working directory and copy files
14
+ WORKDIR /app
15
  COPY requirements.txt ./
16
  COPY run.py ./
17