Yntec commited on
Commit
80af5c4
β€’
1 Parent(s): 3be17d4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -27,4 +27,9 @@ WORKDIR $HOME/app
27
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
28
  COPY --chown=user . $HOME/app
29
 
 
 
 
 
 
30
  CMD ["python", "app.py"]
 
27
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
28
  COPY --chown=user . $HOME/app
29
 
30
+ RUN git clone https://github.com/Yntec/gradio-3.15.0-gr.load/gradio gradio && \
31
+ cd gradio && \
32
+ npm install -g pnpm && \
33
+ sh scripts/build_frontend.sh
34
+
35
  CMD ["python", "app.py"]