release: v 0.1 release
Build and Push Docker Image / build-and-push (push) Successful in 2m37s Details

This commit is contained in:
itqop 2025-10-18 17:10:27 +03:00
parent e5691790d6
commit d7e3a7bccc
1 changed files with 3 additions and 1 deletions

View File

@ -13,10 +13,12 @@ COPY pyproject.toml poetry.lock ./
RUN poetry config virtualenvs.create false
RUN poetry install
RUN poetry install --no-root --only main
COPY src/ ./src/
RUN poetry install --only-root
RUN useradd --create-home --shell /bin/bash app && chown -R app:app /app
USER app