tomas-gajarsky commited on
Commit
2fee2a2
·
verified ·
1 Parent(s): 9b5eaf5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -11,13 +11,11 @@ ENV HOME=/home/user \
11
  PATH=/home/user/.local/bin:$PATH
12
 
13
  WORKDIR $HOME/code
14
- #RUN chown -R user:user $WORKDIR
15
- #RUN chmod 777 $WORKDIR
16
 
17
  COPY --chown=user requirements.txt $WORKDIR/requirements.txt
18
 
19
  RUN pip install --upgrade pip
20
- RUN pip install gradio==4.44.1 --no-cache-dir
21
  RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
22
 
23
  COPY --chown=user . .
 
11
  PATH=/home/user/.local/bin:$PATH
12
 
13
  WORKDIR $HOME/code
 
 
14
 
15
  COPY --chown=user requirements.txt $WORKDIR/requirements.txt
16
 
17
  RUN pip install --upgrade pip
18
+ RUN pip install gradio==4.44.1 pydantic==2.10.6 --no-cache-dir
19
  RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
20
 
21
  COPY --chown=user . .