Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion localstack-core/localstack/dev/kubernetes/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def generate_mount_points(

# container paths
target_path = "/opt/code/localstack/"
venv_path = os.path.join(target_path, ".venv", "lib", "python3.11", "site-packages")
venv_path = os.path.join(target_path, ".venv", "lib", "python3.13", "site-packages")

# Community code
if pro:
Expand Down
2 changes: 1 addition & 1 deletion localstack-core/localstack/dev/run/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ContainerPaths:
"""Important paths in the container"""

project_dir: str = "/opt/code/localstack"
site_packages_target_dir: str = "/opt/code/localstack/.venv/lib/python3.11/site-packages"
site_packages_target_dir: str = "/opt/code/localstack/.venv/lib/python3.13/site-packages"
docker_entrypoint: str = "/usr/local/bin/docker-entrypoint.sh"
localstack_supervisor: str = "/usr/local/bin/localstack-supervisor"
localstack_source_dir: str
Expand Down
Loading