Spaces:
Running
Running
Update Dockerfile.txt
Browse files- Dockerfile.txt +4 -0
Dockerfile.txt
CHANGED
|
@@ -4,6 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive \
|
|
| 4 |
HOME=/root \
|
| 5 |
PROXY_PORT=7860 \
|
| 6 |
OPENCLAW_PORT=8080 \
|
|
|
|
| 7 |
SYNC_INTERVAL=300 \
|
| 8 |
PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
| 9 |
|
|
@@ -20,6 +21,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 20 |
wget \
|
| 21 |
&& rm -rf /var/lib/apt/lists/*
|
| 22 |
|
|
|
|
|
|
|
|
|
|
| 23 |
RUN npm install -g openclaw@latest playwright \
|
| 24 |
&& playwright install --with-deps chromium
|
| 25 |
|
|
|
|
| 4 |
HOME=/root \
|
| 5 |
PROXY_PORT=7860 \
|
| 6 |
OPENCLAW_PORT=8080 \
|
| 7 |
+
CODE_PORT=8888 \
|
| 8 |
SYNC_INTERVAL=300 \
|
| 9 |
PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
| 10 |
|
|
|
|
| 21 |
wget \
|
| 22 |
&& rm -rf /var/lib/apt/lists/*
|
| 23 |
|
| 24 |
+
# Install code-server
|
| 25 |
+
RUN curl -fsSL https://code-server.dev/install.sh | sh
|
| 26 |
+
|
| 27 |
RUN npm install -g openclaw@latest playwright \
|
| 28 |
&& playwright install --with-deps chromium
|
| 29 |
|