tumuyan2 commited on
Commit
b72802a
·
verified ·
1 Parent(s): af57889

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,9 +3,9 @@ FROM python:3.9
3
  WORKDIR /code
4
 
5
 
6
- RUN wget https://download.kiwix.org/release/kiwix-tools/kiwix-tools_linux-x86_64.tar.gz
7
  RUN tar -xvzf kiwix-tools_linux-x86_64.tar.gz ; cp -R kiwix-tools_linux-x86_64-*/* . ; rm kiwix-tools* -rf; chmod +x kiwix*
8
- RUN wget https://download.kiwix.org/zim/wikipedia/wikipedia_zh_all_nopic_2024-04.zim
9
 
10
  COPY . .
11
 
 
3
  WORKDIR /code
4
 
5
 
6
+ RUN wget -q https://download.kiwix.org/release/kiwix-tools/kiwix-tools_linux-x86_64.tar.gz
7
  RUN tar -xvzf kiwix-tools_linux-x86_64.tar.gz ; cp -R kiwix-tools_linux-x86_64-*/* . ; rm kiwix-tools* -rf; chmod +x kiwix*
8
+ RUN wget -q https://download.kiwix.org/zim/wikipedia/wikipedia_zh_all_nopic_2024-04.zim
9
 
10
  COPY . .
11