14 lines
237 B
Docker
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"]
|