10 lines
149 B
Docker
10 lines
149 B
Docker
FROM ghcr.io/openclaw/openclaw:latest
|
|
|
|
USER root
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y docker.io \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
USER node
|