This commit is contained in:
Valeria Fadeeva 2025-07-09 23:45:05 +05:00
parent 1639a1cbbc
commit b4662045c8
1 changed files with 2 additions and 1 deletions

View File

@ -8,8 +8,9 @@ WORKDIR /app
# Export poetry dependencies to file
RUN pip install --upgrade pip
COPY poetry.lock pyproject.toml ./
RUN pip install poetry poetry-plugin-export
COPY poetry.lock pyproject.toml ./
RUN poetry lock
RUN poetry export --without-hashes --format requirements.txt --output /app/requirements.txt
#####################