Files
carlospalanca.es/agents/tyrion/Dockerfile

16 lines
248 B
Docker

FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir \
discord.py==2.3.2 \
httpx==0.27.0 \
PyGithub==2.3.0 \
python-dotenv==1.0.1
COPY ../shared/ ./shared/
COPY prompt.txt .
COPY main.py .
CMD ["python", "main.py"]