Ability to play Uno implemented in early stages!

This commit is contained in:
2026-01-30 21:43:20 +02:00
parent 5b1163c7af
commit 0a9145728e
6 changed files with 687 additions and 1 deletions

View File

@@ -4,7 +4,6 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN playwright install
# Install system dependencies
# ffmpeg: video/audio processing for media handling
@@ -21,6 +20,9 @@ RUN apt-get update && apt-get install -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install Playwright browsers with system dependencies (for UNO automation)
RUN playwright install --with-deps chromium
# Install Docker CLI and docker compose plugin so the bot can build/create the face detector container
RUN set -eux; \
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg; \