chore: update Dockerfiles to use Python 3.12 and adjust docs directory addition

This commit is contained in:
mrT23
2024-10-25 17:35:28 +03:00
parent a221f8edd0
commit 8e94c8b2f5
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ FROM python:3.12.3 AS base
WORKDIR /app
ADD pyproject.toml .
ADD requirements.txt .
ADD docs docs
RUN pip install . && rm pyproject.toml requirements.txt
ENV PYTHONPATH=/app