huginn/Dockerfile
2025-08-17 21:52:21 +00:00

13 lines
No EOL
213 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 ./
RUN useradd app
USER app
CMD ["python", "main.py"]