Huy Nguyen commited on
Commit
fba32b8
·
1 Parent(s): 3ebfa29

add -y switch to apt-get install(s)

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,10 +1,10 @@
1
  FROM python:3.10
2
 
3
  RUN apt-get update && apt-get install -y libgl1-mesa-glx libxext6
4
- RUN apt-get install pandoc
5
- RUN apt-get install tesseract-ocr
6
- RUN apt-get install tesseract-ocr-vie
7
- RUN apt-get install tesseract-ocr-script-viet
8
 
9
  RUN useradd -m -u 1000 user
10
 
 
1
  FROM python:3.10
2
 
3
  RUN apt-get update && apt-get install -y libgl1-mesa-glx libxext6
4
+ RUN apt-get install -y pandoc
5
+ RUN apt-get install -y tesseract-ocr
6
+ RUN apt-get install -y tesseract-ocr-vie
7
+ RUN apt-get install -y tesseract-ocr-script-viet
8
 
9
  RUN useradd -m -u 1000 user
10