mirror of https://github.com/kortix-ai/suna.git
144 lines
4.0 KiB
Docker
144 lines
4.0 KiB
Docker
FROM python:3.11-slim-bookworm
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
wget \
|
|
netcat-traditional \
|
|
gnupg \
|
|
curl \
|
|
unzip \
|
|
zip \
|
|
xvfb \
|
|
libgconf-2-4 \
|
|
libxss1 \
|
|
libnss3 \
|
|
libnspr4 \
|
|
libasound2 \
|
|
libatk1.0-0 \
|
|
libatk-bridge2.0-0 \
|
|
libcups2 \
|
|
libdbus-1-3 \
|
|
libdrm2 \
|
|
libgbm1 \
|
|
libgtk-3-0 \
|
|
libxcomposite1 \
|
|
libxdamage1 \
|
|
libxfixes3 \
|
|
libxrandr2 \
|
|
xdg-utils \
|
|
fonts-liberation \
|
|
dbus \
|
|
xauth \
|
|
xvfb \
|
|
x11vnc \
|
|
tigervnc-tools \
|
|
supervisor \
|
|
net-tools \
|
|
procps \
|
|
git \
|
|
python3-numpy \
|
|
fontconfig \
|
|
fonts-dejavu \
|
|
fonts-dejavu-core \
|
|
fonts-dejavu-extra \
|
|
tmux \
|
|
# PDF Processing Tools
|
|
poppler-utils \
|
|
wkhtmltopdf \
|
|
# Document Processing Tools
|
|
antiword \
|
|
unrtf \
|
|
catdoc \
|
|
# Text Processing Tools
|
|
grep \
|
|
gawk \
|
|
sed \
|
|
# File Analysis Tools
|
|
file \
|
|
# Data Processing Tools
|
|
jq \
|
|
csvkit \
|
|
xmlstarlet \
|
|
# Additional Utilities
|
|
less \
|
|
vim \
|
|
tree \
|
|
rsync \
|
|
lsof \
|
|
iputils-ping \
|
|
dnsutils \
|
|
sudo \
|
|
# OCR Tools
|
|
tesseract-ocr \
|
|
tesseract-ocr-eng \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Node.js, npm, pnpm (via corepack) and useful global CLIs
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& npm install -g npm@latest \
|
|
&& corepack enable \
|
|
&& corepack prepare pnpm@9.1.0 --activate
|
|
|
|
# pnpm config and store dir for faster installs
|
|
ENV PNPM_HOME=/root/.local/share/pnpm
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
RUN pnpm config set store-dir /root/.pnpm-store
|
|
|
|
# Install noVNC
|
|
RUN git clone https://github.com/novnc/noVNC.git /opt/novnc \
|
|
&& git clone https://github.com/novnc/websockify /opt/novnc/utils/websockify \
|
|
&& ln -s /opt/novnc/vnc.html /opt/novnc/index.html
|
|
|
|
# Set platform for ARM64 compatibility
|
|
ARG TARGETPLATFORM=linux/amd64
|
|
|
|
# Set up working directory
|
|
WORKDIR /app
|
|
COPY package*.json tsconfig.json ./
|
|
RUN npm ci
|
|
|
|
# Copy requirements and install Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Install Playwright and browsers with system dependencies
|
|
ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
|
# Then install dependencies and browsers
|
|
RUN npx playwright install-deps
|
|
RUN npx playwright install chromium
|
|
# Verify installation
|
|
RUN node -e "import('playwright').then(() => console.log('Playwright installation verified')).catch(e => { console.error('Playwright verification failed:', e); process.exit(1); })"
|
|
|
|
WORKDIR /opt/templates/next-app
|
|
|
|
RUN npx --yes create-next-app@latest . --yes
|
|
RUN npx --yes shadcn@latest init --yes -b neutral --force
|
|
RUN npx --yes shadcn@latest add --all --yes
|
|
|
|
# Copy server script
|
|
COPY . /app
|
|
COPY server.py /app/server.py
|
|
|
|
# Set environment variables
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV CHROME_PATH=/ms-playwright/chromium-*/chrome-linux/chrome
|
|
ENV ANONYMIZED_TELEMETRY=false
|
|
ENV DISPLAY=:99
|
|
ENV RESOLUTION=1024x768x24
|
|
ENV VNC_PASSWORD=vncpassword
|
|
ENV CHROME_PERSISTENT_SESSION=true
|
|
ENV RESOLUTION_WIDTH=1024
|
|
ENV RESOLUTION_HEIGHT=768
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
ENV NODE_OPTIONS=--max-old-space-size=2048
|
|
# Add Chrome flags to prevent multiple tabs/windows
|
|
ENV CHROME_FLAGS="--single-process --no-first-run --no-default-browser-check --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-breakpad --disable-component-extensions-with-background-pages --disable-dev-shm-usage --disable-extensions --disable-features=TranslateUI --disable-ipc-flooding-protection --disable-renderer-backgrounding --enable-features=NetworkServiceInProcess2 --force-color-profile=srgb --metrics-recording-only --mute-audio --no-sandbox --disable-gpu"
|
|
|
|
# Set up supervisor configuration
|
|
RUN mkdir -p /var/log/supervisor
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
EXPOSE 7788 6080 5901 8000 8004 8080
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] |