Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
6b6735e07f | ||
4b99f2e816 | |||
|
c38f8f2ef8 | ||
478dc3a8a1 |
@@ -23,7 +23,6 @@ COPY pyproject.toml uv.lock ./
|
|||||||
|
|
||||||
# Copy source code (needed for editable install)
|
# Copy source code (needed for editable install)
|
||||||
COPY src/ src/
|
COPY src/ src/
|
||||||
COPY assets/ assets/
|
|
||||||
|
|
||||||
# Change ownership of source files before building (lighter I/O)
|
# Change ownership of source files before building (lighter I/O)
|
||||||
RUN chown -R appuser:appuser /app
|
RUN chown -R appuser:appuser /app
|
||||||
@@ -56,7 +55,6 @@ RUN chown appuser:appuser /app
|
|||||||
# Copy files from builder with correct ownership
|
# Copy files from builder with correct ownership
|
||||||
COPY --from=builder --chown=appuser:appuser /app/.venv /app/.venv
|
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/src /app/src
|
||||||
COPY --from=builder --chown=appuser:appuser /app/assets /app/assets
|
|
||||||
|
|
||||||
# Switch to non-root user
|
# Switch to non-root user
|
||||||
USER appuser
|
USER appuser
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "embeddingbuddy"
|
name = "embeddingbuddy"
|
||||||
version = "0.8.1"
|
version = "0.8.3"
|
||||||
description = "A Python Dash application for interactive exploration and visualization of embedding vectors through dimensionality reduction techniques."
|
description = "A Python Dash application for interactive exploration and visualization of embedding vectors through dimensionality reduction techniques."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
|
@@ -660,14 +660,12 @@ class DataProcessingCallbacks:
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Get the project root directory (four levels up from this file)
|
# Get the embeddingbuddy package directory (three levels up from this file)
|
||||||
current_file = os.path.abspath(__file__)
|
current_file = os.path.abspath(__file__)
|
||||||
project_root = os.path.dirname(
|
package_dir = os.path.dirname(
|
||||||
os.path.dirname(
|
os.path.dirname(os.path.dirname(current_file))
|
||||||
os.path.dirname(os.path.dirname(os.path.dirname(current_file)))
|
|
||||||
)
|
)
|
||||||
)
|
sample_file_path = os.path.join(package_dir, "assets", "sample-txt.md")
|
||||||
sample_file_path = os.path.join(project_root, "assets", "sample-txt.md")
|
|
||||||
|
|
||||||
if os.path.exists(sample_file_path):
|
if os.path.exists(sample_file_path):
|
||||||
with open(sample_file_path, "r", encoding="utf-8") as file:
|
with open(sample_file_path, "r", encoding="utf-8") as file:
|
||||||
|
Reference in New Issue
Block a user