mirror of
https://github.com/aljazceru/private-ai-assistant.git
synced 2025-12-24 08:14:20 +01:00
11 lines
190 B
Docker
11 lines
190 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
COPY permissions.json .
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY signal_bot.py .
|
|
|
|
CMD ["python", "signal_bot.py"]
|