29 lines
567 B
Docker
29 lines
567 B
Docker
FROM debian:bookworm-slim
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
bash \
|
|
ca-certificates \
|
|
chromium \
|
|
curl \
|
|
fonts-liberation \
|
|
fonts-noto-color-emoji \
|
|
git \
|
|
jq \
|
|
novnc \
|
|
python3 \
|
|
socat \
|
|
websockify \
|
|
x11vnc \
|
|
xvfb \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY scripts/sandbox-browser-entrypoint.sh /usr/local/bin/moltbot-sandbox-browser
|
|
RUN chmod +x /usr/local/bin/moltbot-sandbox-browser
|
|
|
|
EXPOSE 9222 5900 6080
|
|
|
|
CMD ["moltbot-sandbox-browser"]
|