mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
57 lines
1.2 KiB
Docker
57 lines
1.2 KiB
Docker
# Use a specific Python 3.11 slim image as the base
|
|
FROM python:3.11.3-slim
|
|
|
|
# Set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
git \
|
|
curl \
|
|
unzip \
|
|
xvfb \
|
|
libnss3 \
|
|
libatk-bridge2.0-0 \
|
|
libgtk-3-0 \
|
|
libxss1 \
|
|
libasound2 \
|
|
libx11-xcb1 \
|
|
libxcb-dri3-0 \
|
|
libdrm2 \
|
|
libgbm1 \
|
|
libxcomposite1 \
|
|
libxdamage1 \
|
|
libxrandr2 \
|
|
libxinerama1 \
|
|
libxcursor1 \
|
|
libxi6 \
|
|
libgl1-mesa-glx \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Create a non-root user
|
|
RUN addgroup --system appgroup && adduser --system --ingroup appgroup appuser
|
|
|
|
# Set work directory
|
|
WORKDIR /app
|
|
|
|
# Copy project files
|
|
COPY . /app/
|
|
|
|
# Change ownership to the non-root user
|
|
RUN chown -R appuser:appgroup /app
|
|
|
|
# Switch to non-root user
|
|
USER appuser
|
|
|
|
# Install Python dependencies
|
|
RUN pip install --upgrade pip \
|
|
&& pip install .
|
|
|
|
# Define health check (example: adjust as needed)
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:8000/health || exit 1
|
|
|
|
# Define default command
|
|
CMD ["python", "-m", "browser_use"]
|