macadeliccc commited on
Commit
9878af3
1 Parent(s): 50e9742

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -13,9 +13,9 @@ COPY ./requirements.txt /app/
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  # Download model
16
- RUN MODEL_NAME_FILE=$(echo ${MODEL#*/} | tr '[:upper:]' '[:lower:]' | sed 's/-gguf$//') && \
17
  wget https://huggingface.co/${MODEL}/resolve/main/${MODEL_NAME_FILE}.${QUANT}.gguf -O model.gguf
18
-
19
  # Copy the rest of your application
20
  COPY . .
21
 
 
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  # Download model
16
+ RUN MODEL_NAME_FILE=$(echo ${MODEL#*/} | sed 's/-GGUF$//') && \
17
  wget https://huggingface.co/${MODEL}/resolve/main/${MODEL_NAME_FILE}.${QUANT}.gguf -O model.gguf
18
+
19
  # Copy the rest of your application
20
  COPY . .
21