alibidaran commited on
Commit
8644e6e
·
verified ·
1 Parent(s): cd3da6d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -6,10 +6,11 @@ RUN apt-get update && \
6
  apt-get clean && rm -rf /var/lib/apt/lists/*
7
 
8
  WORKDIR /app
9
- # ...existing code...
 
10
  ENV HF_HOME=/tmp/huggingface
11
  RUN mkdir -p /tmp/huggingface && chmod -R 777 /tmp/huggingface
12
- # ...existing code...
13
  COPY requirements.txt ./
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
 
6
  apt-get clean && rm -rf /var/lib/apt/lists/*
7
 
8
  WORKDIR /app
9
+
10
+ ENV HOME=/app
11
  ENV HF_HOME=/tmp/huggingface
12
  RUN mkdir -p /tmp/huggingface && chmod -R 777 /tmp/huggingface
13
+
14
  COPY requirements.txt ./
15
  RUN pip install --no-cache-dir -r requirements.txt
16