edit Dockerfile, docker compose

This commit is contained in:
Skyber_2 2026-03-26 12:59:32 +03:00
parent d4534ccc29
commit c0b3dd4fb9
2 changed files with 17 additions and 17 deletions

View file

@ -6,11 +6,13 @@ RUN apt-get update && apt-get install -y \
docker.io \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN mkdir -p /app/hermes_code /app/hermes_data
WORKDIR /app/hermes_code
COPY pyproject.toml requirements.txt* ./
RUN pip install --no-cache-dir browser-use playwright
RUN pip install --no-cache-dir browser-use playwright python-telegram-bot
COPY . .