max-unfinity commited on
Commit
0f8b222
·
1 Parent(s): c66f90e

fix docker

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -5,7 +5,10 @@ RUN pip install streamlit
5
  RUN pip install opencv-python==4.6.0.66
6
  RUN pip install Pillow==10.3.0
7
 
8
- RUN apt update && apt install fonts-dejavu
 
 
 
9
 
10
  EXPOSE 8501
11
  CMD streamlit run app.py \
 
5
  RUN pip install opencv-python==4.6.0.66
6
  RUN pip install Pillow==10.3.0
7
 
8
+ RUN apt update && apt install fonts-dejavu -y
9
+
10
+ WORKDIR /app
11
+ COPY . /app
12
 
13
  EXPOSE 8501
14
  CMD streamlit run app.py \