|
|
|
@ -1,10 +1,11 @@
|
|
|
|
# syntax=docker/dockerfile:1.4
|
|
|
|
# syntax=docker/dockerfile:1.4
|
|
|
|
FROM --platform=linux/amd64 ghcr.io/openclaw/openclaw:latest
|
|
|
|
FROM --platform=linux/amd64 ghcr.io/openclaw/openclaw:main
|
|
|
|
USER root
|
|
|
|
USER root
|
|
|
|
|
|
|
|
|
|
|
|
# Install everything in a single layer to reduce layer count
|
|
|
|
# Install everything in a single layer to reduce layer count
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
python3-pip \
|
|
|
|
python3-pip \
|
|
|
|
|
|
|
|
python3.11-venv \
|
|
|
|
jq \
|
|
|
|
jq \
|
|
|
|
gh \
|
|
|
|
gh \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
@ -12,6 +13,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
google-auth \
|
|
|
|
google-auth \
|
|
|
|
google-auth-oauthlib \
|
|
|
|
google-auth-oauthlib \
|
|
|
|
google-api-python-client \
|
|
|
|
google-api-python-client \
|
|
|
|
uv
|
|
|
|
uv \
|
|
|
|
|
|
|
|
scrapling \
|
|
|
|
|
|
|
|
playwright \
|
|
|
|
|
|
|
|
beautifulsoup4 \
|
|
|
|
|
|
|
|
requests \
|
|
|
|
|
|
|
|
yt-dlp \
|
|
|
|
|
|
|
|
moviepy \
|
|
|
|
|
|
|
|
pillow \
|
|
|
|
|
|
|
|
pydub \
|
|
|
|
|
|
|
|
elevenlabs
|
|
|
|
|
|
|
|
|
|
|
|
USER node
|
|
|
|
USER node
|
|
|
|
|