2 Commits

Author SHA1 Message Date
gitea-actions[bot]
6b6735e07f bump version to v0.8.3 2025-10-02 15:46:09 +00:00
4b99f2e816 remove asset dir from Dockerfile
All checks were successful
Security Scan / dependency-check (push) Successful in 38s
Security Scan / security (push) Successful in 41s
Test Suite / lint (push) Successful in 29s
Test Suite / test (3.11) (push) Successful in 1m29s
Test Suite / build (push) Successful in 43s
2025-10-02 08:44:46 -07:00
2 changed files with 1 additions and 3 deletions

View File

@@ -23,7 +23,6 @@ COPY pyproject.toml uv.lock ./
# Copy source code (needed for editable install)
COPY src/ src/
COPY assets/ assets/
# Change ownership of source files before building (lighter I/O)
RUN chown -R appuser:appuser /app
@@ -56,7 +55,6 @@ RUN chown appuser:appuser /app
# Copy files from builder with correct ownership
COPY --from=builder --chown=appuser:appuser /app/.venv /app/.venv
COPY --from=builder --chown=appuser:appuser /app/src /app/src
COPY --from=builder --chown=appuser:appuser /app/assets /app/assets
# Switch to non-root user
USER appuser

View File

@@ -1,6 +1,6 @@
[project]
name = "embeddingbuddy"
version = "0.8.2"
version = "0.8.3"
description = "A Python Dash application for interactive exploration and visualization of embedding vectors through dimensionality reduction techniques."
readme = "README.md"
requires-python = ">=3.11"