Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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"]
|