Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -31,10 +31,13 @@ RUN rm -f /etc/apt/sources.list.d/*.list && \
|
|
| 31 |
# Clone the web-ui repository from GitHub.
|
| 32 |
RUN git clone https://github.com/browser-use/web-ui.git
|
| 33 |
|
|
|
|
|
|
|
| 34 |
# Set the working directory to the newly cloned repository.
|
| 35 |
WORKDIR /app/web-ui
|
| 36 |
|
| 37 |
-
RUN ls -la
|
|
|
|
| 38 |
|
| 39 |
# Install uv first, then use it to create the virtual environment and install dependencies.
|
| 40 |
RUN pip install uv
|
|
|
|
| 31 |
# Clone the web-ui repository from GitHub.
|
| 32 |
RUN git clone https://github.com/browser-use/web-ui.git
|
| 33 |
|
| 34 |
+
RUN ls -la
|
| 35 |
+
|
| 36 |
# Set the working directory to the newly cloned repository.
|
| 37 |
WORKDIR /app/web-ui
|
| 38 |
|
| 39 |
+
RUN ls -la /app/web-ui
|
| 40 |
+
|
| 41 |
|
| 42 |
# Install uv first, then use it to create the virtual environment and install dependencies.
|
| 43 |
RUN pip install uv
|