huginn/Dockerfile
2025-10-22 22:45:13 +03:00

14 lines
237 B
Docker

FROM python:3.12
WORKDIR /app
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY ./main.py ./
COPY ./tools.py ./
COPY ./.env ./
COPY ./sysprompt.md ./
RUN useradd app
USER app
CMD ["python", "main.py"]